diff --git a/JoystickControlServo/.devcontainer/Dockerfile b/JoystickControlServo/.devcontainer/Dockerfile new file mode 100644 index 0000000..dafb8ad --- /dev/null +++ b/JoystickControlServo/.devcontainer/Dockerfile @@ -0,0 +1,13 @@ +ARG DOCKER_TAG=latest +FROM espressif/idf:${DOCKER_TAG} + +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8 + +RUN apt-get update -y && apt-get install udev -y + +RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc + +ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] + +CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/JoystickControlServo/.devcontainer/devcontainer.json b/JoystickControlServo/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b801786 --- /dev/null +++ b/JoystickControlServo/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "ESP-IDF QEMU", + "build": { + "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash", + "idf.espIdfPath": "/opt/esp/idf", + "idf.toolsPath": "/opt/esp", + "idf.gitPath": "/usr/bin/git" + }, + "extensions": [ + "espressif.esp-idf-extension", + "espressif.esp-idf-web" + ] + } + }, + "runArgs": ["--privileged"] +} \ No newline at end of file diff --git a/JoystickControlServo/.vscode/c_cpp_properties.json b/JoystickControlServo/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..9d8595d --- /dev/null +++ b/JoystickControlServo/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPathWin}\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe", + "compileCommands": "${config:idf.buildPath}/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": true + } + } + ], + "version": 4 +} diff --git a/JoystickControlServo/.vscode/launch.json b/JoystickControlServo/.vscode/launch.json new file mode 100644 index 0000000..2511a38 --- /dev/null +++ b/JoystickControlServo/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "gdbtarget", + "request": "attach", + "name": "Eclipse CDT GDB Adapter" + }, + { + "type": "espidf", + "name": "Launch", + "request": "launch" + } + ] +} \ No newline at end of file diff --git a/JoystickControlServo/.vscode/settings.json b/JoystickControlServo/.vscode/settings.json new file mode 100644 index 0000000..1adc11a --- /dev/null +++ b/JoystickControlServo/.vscode/settings.json @@ -0,0 +1,10 @@ +{ + "C_Cpp.intelliSenseEngine": "default", + "idf.espIdfPathWin": "C:\\Users\\famil\\esp\\v5.4\\esp-idf", + "idf.openOcdConfigs": [ + "board/esp32c6-builtin.cfg" + ], + "idf.portWin": "COM9", + "idf.toolsPathWin": "C:\\Users\\famil\\.espressif", + "idf.flashType": "UART" +} diff --git a/JoystickControlServo/CMakeLists.txt b/JoystickControlServo/CMakeLists.txt new file mode 100644 index 0000000..8e94fbf --- /dev/null +++ b/JoystickControlServo/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(JoystickControlServo) diff --git a/JoystickControlServo/README.md b/JoystickControlServo/README.md new file mode 100644 index 0000000..c3e1ee3 --- /dev/null +++ b/JoystickControlServo/README.md @@ -0,0 +1,53 @@ +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | 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/JoystickControlServo/build/.bin_timestamp b/JoystickControlServo/build/.bin_timestamp new file mode 100644 index 0000000..695e8cc --- /dev/null +++ b/JoystickControlServo/build/.bin_timestamp @@ -0,0 +1 @@ +3be6dc59ad95d8a672f37fecff3b5bb7 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.bin diff --git a/JoystickControlServo/build/.ninja_deps b/JoystickControlServo/build/.ninja_deps new file mode 100644 index 0000000..e2d4aaa Binary files /dev/null and b/JoystickControlServo/build/.ninja_deps differ diff --git a/JoystickControlServo/build/.ninja_log b/JoystickControlServo/build/.ninja_log new file mode 100644 index 0000000..77cd93b --- /dev/null +++ b/JoystickControlServo/build/.ninja_log @@ -0,0 +1,1063 @@ +# ninja log v6 +91 121 7609505544237960 project_elf_src_esp32c6.c e6717225a8ae6d3a +91 121 7609505544237960 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/project_elf_src_esp32c6.c e6717225a8ae6d3a +73 152 7609505544420564 esp-idf/esp_system/ld/memory.ld c0f0e65346f1c108 +73 152 7609505544420564 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld c0f0e65346f1c108 +79 153 7609505544420564 esp-idf/esp_system/ld/sections.ld.in 557f14e2b100ea99 +79 153 7609505544420564 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in 557f14e2b100ea99 +205 478 7609505545123410 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 1d6b11ab229bcb4e +85 486 7609505544576079 partition_table/partition-table.bin 95c183f584d2c571 +85 486 7609505544576079 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/partition_table/partition-table.bin 95c183f584d2c571 +200 545 7609505545071272 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 2e696b69e7ed4356 +184 676 7609505544926197 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj cd589949fecf3c4d +164 774 7609505544576079 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 76116bf4d88a511f +194 781 7609505544926197 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj fe1cd8698943a9d0 +179 821 7609505544761990 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj c7557b54881e1556 +174 889 7609505544761990 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj 41aceda7ea3c46cf +156 915 7609505544576079 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj cb028cbe7cdfb260 +169 931 7609505544761990 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj ef11ccc4480daf61 +160 984 7609505544576079 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 4a0c5cc0e4a91ef5 +153 1001 7609505544576079 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 594dd18fdddc152b +213 1033 7609505545123410 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj f79c46de52f3f54a +546 1052 7609505548589153 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj dce8d7b0eb260588 +829 1178 7609505551242925 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj e725faa5a028515f +486 1253 7609505547909506 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj 12b219dd4ff2c51f +480 1275 7609505547742894 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b4f36b277a9baef1 +190 1285 7609505544926197 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 60d6bc422131f5aa +902 1316 7609505552076576 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj adbc26ac9d7248a5 +781 1322 7609505550788723 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj bd27d5796aa0455c +916 1328 7609505552242868 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj f58bbb1bc586abe2 +1034 1405 7609505553408651 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 6bb7402d647d094d +1052 1465 7609505553591275 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b02d942bf479ee35 +1179 1513 7609505554742997 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj a24a47949c523cac +934 1567 7609505552409535 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 38dde6a81b61c5db +993 1595 7609505552928528 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 6be12c1bc21dfc14 +1322 1614 7609505556293702 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj 2896567c76b546df +1001 1677 7609505553077379 esp-idf/esp_https_ota/libesp_https_ota.a a11b03496e2b96eb +685 1687 7609505549946148 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b2e60bc41a7ec505 +775 1693 7609505550788723 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 38a6658302a93792 +1405 1763 7609505557076612 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 46311e5538795c93 +1286 1780 7609505555909518 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj cca11ef34f1a2136 +1316 1814 7609505556238208 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj 5279c607d112a8d9 +1515 1820 7609505558076230 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj 43bde47a4915d2fb +1616 1906 7609505559247918 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 43e5c5e00d41c60f +1275 1948 7609505555743651 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj d415c7db0b4296c1 +1677 1956 7609505559794360 esp-idf/esp_http_server/libesp_http_server.a daf2b8f69c91393e +1465 1986 7609505557633901 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 3f01cd98bba3f52c +1254 2025 7609505555590219 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 9495877f89474576 +1687 2182 7609505559922911 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 1259480ee821fc6 +1823 2196 7609505561289624 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj daf5926e1f9ad9cf +1814 2207 7609505561076558 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj d5c11a900948dc0a +1693 2261 7609505559922911 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj 12b68da91b8d1c77 +1956 2342 7609505562598645 esp-idf/esp_http_client/libesp_http_client.a df5290846c2d764c +2199 2350 7609505565071153 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj 74a434927bbf8f22 +1597 2362 7609505559071295 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 1917900c7630e660 +1328 2369 7609505556293702 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 1c64d75d51b5f855 +1763 2383 7609505560589453 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj 80dfda97e28fbe4b +1780 2396 7609505560744035 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 9acec1a2f6f9dc7c +2026 2460 7609505563291576 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj 2613b05827f2cc8a +1987 2502 7609505562909989 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj 14e7f3105871bbcf +1573 2559 7609505558798738 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 4bfe2008225a872a +1949 2669 7609505562581299 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b57a864413d9fc60 +2342 2680 7609505566410146 esp-idf/tcp_transport/libtcp_transport.a 9ffeb489e4cd1d72 +2208 2697 7609505565077066 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj 41d1c4419bd32895 +2187 2708 7609505564909958 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj f06c42372b75afbf +1907 2722 7609505562108729 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c6/esp_adapter.c.obj 87d307a6c87dbbe0 +2261 2794 7609505565589015 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 35536c2e5a19bfde +2357 2859 7609505566576926 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj d695be835c4d7e96 +2363 2917 7609505566576926 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 70727c6c9f376706 +2378 2923 7609505566742563 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 3e3d00e8f96e3d94 +2396 2961 7609505566958903 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 1c6dd7c5b284e3a5 +2683 3007 7609505569909182 esp-idf/esp_gdbstub/libesp_gdbstub.a 6852a781cd130422 +2461 3036 7609505567587430 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj e16f2f63d6738f72 +2502 3091 7609505568075826 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj d3b882be039a54ee +2562 3139 7609505568589144 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj c988eab9fc7f2aa3 +3007 3262 7609505573123788 esp-idf/esp_adc/libesp_adc.a 79125003ac44b131 +2712 3276 7609505570237669 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj a6ac9956ed48351a +2795 3282 7609505571076700 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b5b22e911f1e9a6b +2383 3296 7609505566904543 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 66ae1b98c30fae18 +2672 3356 7609505569742889 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj ab07e4da66d6ede9 +2723 3398 7609505570289683 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 3d64cf8d251b0710 +2917 3489 7609505572247985 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj 6d9e77244b481957 +2865 3494 7609505571625709 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj ac1a2e64301fb431 +3262 3500 7609505575576520 esp-idf/esp-tls/libesp-tls.a 866cb417ccba0133 +3036 3540 7609505573409958 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 87757df8a990ac96 +3091 3560 7609505573959079 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 5cc1c8eb7d160bd1 +2961 3587 7609505572576359 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj a5a6687272186acb +2698 3594 7609505570076039 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj faed57408c39ee58 +2923 3631 7609505572266832 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 3ac91a68d6f31535 +3139 3650 7609505574459067 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj f08697f9fa475a53 +3501 3656 7609505578076143 esp-idf/http_parser/libhttp_parser.a a90e10ad47f2cc35 +3296 3776 7609505575909745 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj b59652243109f218 +3356 3807 7609505576576627 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 33f69a0823941c4d +3282 3860 7609505575898155 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 35b667a2b7c026fb +3276 3919 7609505575743105 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj e9a2d0c04ed7c4c0 +3656 3956 7609505579606015 esp-idf/esp_wifi/libesp_wifi.a 78994b0cd361ba80 +3489 3972 7609505577909693 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj a743103a74f71ba9 +3561 3989 7609505578634061 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 382cf181907c126b +3494 4011 7609505577909693 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 33bbda3a83f0b216 +3433 4023 7609505577767757 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 406f356ea187445c +3644 4088 7609505579458872 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj df2fd4c334b9f717 +3540 4117 7609505578423272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 6483f606608b540f +3587 4139 7609505578923292 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj a06e6df45d7cd8bf +3594 4183 7609505578923292 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj f44118024c3d25d8 +3650 4288 7609505579581100 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 98134b33c624ece9 +3779 4302 7609505580742990 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 4d90dc0028b9b3aa +3820 4426 7609505581242934 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 9ad6622326c56277 +3924 4483 7609505582450953 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 7bef06c1f02bdd35 +3962 4542 7609505582731809 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 50ac3250229384e2 +3861 4562 7609505581623960 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj fdb0598a366d16d7 +4015 4574 7609505583092101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj aec1b855885bff73 +3983 4674 7609505582904378 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 319e344121ff8d11 +4151 4701 7609505584575692 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1d5fa4f2bdca8221 +4289 4770 7609505585909999 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 21773cc295369dbc +4304 4783 7609505586076495 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj ebf1c68e9672cabd +4111 4790 7609505584075904 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 430f338f25225efa +4125 4815 7609505584409624 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 807ca0d280aa6f0b +4005 4863 7609505583092101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 87fb90445f926dec +4483 4938 7609505587904412 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 4f7d50b3cbbd157d +4025 4960 7609505583243287 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 7d5c4d65e332e1f5 +4543 5023 7609505588456295 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 4e48be54da0537ba +4434 5031 7609505587409389 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 2e307c191a1bd57b +4563 5081 7609505588588771 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 572ef5ba68ac1f46 +4183 5103 7609505584914562 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 13e5a88f0d6a1c5e +4574 5127 7609505588743478 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj 3cfd241a19244427 +4702 5284 7609505590091086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj ef8b54b4cc2eb26b +4675 5295 7609505589742326 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 3ff20a2c1a2585ac +4785 5341 7609505590909324 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj fe8f0f5e67b3bbb7 +5031 5381 7609505593256418 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 6bcaf42e829e7ca4 +4791 5427 7609505590909324 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 4320849e22d0f2de +4777 5433 7609505590765364 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 5ce091683b3d7a7f +4872 5478 7609505591754971 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj afae7844a0726580 +4816 5521 7609505591242960 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj dbeb1fcfb11522db +4967 5546 7609505592743102 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj 18141de5cdfdc27e +5106 5636 7609505594076239 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 150f7dc70fe3ff5e +4954 5646 7609505592577070 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 6b5bdde411d55ebc +5135 5691 7609505594409176 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj c4923a73068be428 +5087 5773 7609505593924402 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj 706a6b8495572311 +5295 5917 7609505595909602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 1d4a401b6cde034e +5433 5974 7609505597404410 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj 4a8250560eaee779 +5024 5991 7609505593256418 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj 7bad5b6a0919f415 +5341 6033 7609505596425900 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj d394be07c357ebc7 +5382 6039 7609505596898088 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 94adbe24f596b8f +5284 6111 7609505595909602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 8391ed700f63fb54 +5647 6124 7609505599409247 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 845cd32f5fce8327 +5692 6205 7609505599957071 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 47fb5ab4527f7910 +5478 6211 7609505597743185 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 372974b6f41f1b85 +5521 6279 7609505598291055 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj d6a57a4a8e1dd261 +5992 6284 7609505602956760 esp-idf/esp_coex/libesp_coex.a f3db9ae6466d08ac +5546 6303 7609505598422310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 1cbaa214ddfd85b5 +5427 6309 7609505597243008 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj bed565197c4c99a5 +6039 6328 7609505603423029 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj c4d8534e01b416d5 +5773 6340 7609505600757621 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj ffbe107403ed54c2 +6111 6464 7609505604089355 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 4247ec04160f1dc5 +5975 6491 7609505602742743 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 76a19ecb95b51abf +6033 6526 7609505603404488 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 94d43f8a2da196ad +5928 6538 7609505602242758 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj c8d2a3a9a32189fc +5636 6553 7609505599409247 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 4db7401a2075ec79 +6213 6632 7609505605089636 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 389f9d52e8ead37a +6284 6774 7609505605914326 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 1f68a69813187c73 +6205 6803 7609505605089636 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj fded0faddbd455b4 +6309 6811 7609505606075379 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 571ac1d5482159f9 +6304 6826 7609505606075379 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj d81610e443a4d6 +6531 6894 7609505608404312 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj d4a0744474fc483c +6279 6917 7609505605794209 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj 198ed8361b492f74 +6328 6925 7609505606242842 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 91857e51365b5c64 +6464 6934 7609505607575813 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 6e0a4d5face63b3e +6493 6962 7609505607909304 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj fe1c63c048eda24a +6544 6993 7609505608429347 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 2fdc936d9d3081b4 +6634 7065 7609505609409475 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 7168a11d063ccc68 +6340 7129 7609505606409218 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj bb54f43a763a4ed +6125 7257 7609505604242860 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 54ec1377315c39e0 +6555 7303 7609505608575940 esp-idf/wpa_supplicant/libwpa_supplicant.a 540162b29e0c5594 +6826 7321 7609505611397466 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 1746a064d6414c77 +6805 7343 7609505611075941 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 985323919c858234 +6811 7356 7609505611075941 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj a2de0355abbe50ab +6934 7366 7609505612409973 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 662ad56a98f8d1cd +6993 7384 7609505612951915 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 10d00a56c6ccca00 +6925 7394 7609505612255485 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 7e5a75fcb620cb1e +6894 7419 7609505611922714 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 851427cd9b933d2 +6963 7495 7609505612575926 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b2005df637a1404a +6918 7610 7609505612255485 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj db0e79dc1e6afa8f +7070 7680 7609505613742786 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 1e0e843598554315 +7347 7743 7609505616576057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b26c41e44d10d8f8 +7135 7791 7609505614422046 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 8cfe4888df8a6c9b +7322 7807 7609505616409505 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 2f87859292368eb6 +6789 7894 7609505610909482 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj fa753d52913fe33f +7495 7900 7609505617922468 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 898e6d2244020d0b +7311 7909 7609505616125128 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 1d745c72f9177dd9 +7258 7932 7609505615576372 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj d6527008dd9893ca +7398 7956 7609505617100890 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 651150804d3f7fd6 +7427 8172 7609505617299734 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 2c6168037283f64f +7388 8188 7609505616922530 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 2a8b5c51b1251403 +7358 8204 7609505616576057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 51aa7f96a1751224 +7371 8220 7609505616764270 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj f31ccd776de416c6 +7744 8231 7609505620458845 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 7e07ccbc3d119b89 +7957 8359 7609505622624279 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 3387b1a4f1f6f2b0 +7820 8365 7609505621256107 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj 58e86f83c1f97cae +7903 8377 7609505622076381 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj bf5b3eeb28ef5dcb +7895 8382 7609505621934895 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 17e8dc8cdd6664bd +7680 8402 7609505619791406 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 7c1cee41ac17ccdc +7616 8408 7609505619241223 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj c755487da7e2a0ba +7945 8445 7609505622581070 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj df41e65e9336a2de +7801 8450 7609505621090720 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj ab151be5f4d6aa66 +7922 8516 7609505622242419 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 7146af927338af7b +8194 8535 7609505625064357 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 35116c1f5da1a6b8 +8231 8603 7609505625242057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 91408e7c2a2cd915 +8176 8755 7609505624742838 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj bc792fa61e6f28c +8223 8776 7609505625242057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 218c7430a534df76 +8451 8790 7609505627592533 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj d510fd311cc91afe +8402 8805 7609505627075523 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 6fea292b4ab3268e +8377 8819 7609505626742316 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 45d93cd8c30aa01a +8445 8903 7609505627456738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj f1be3d6106c50c6a +8206 8914 7609505625075975 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 6250e060f134524a +8408 8923 7609505627075523 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 4164c43c179bc2b3 +8517 8943 7609505628247471 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 73723ddf2cd20b7e +8384 8977 7609505626908941 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj 5f721e2ea93c9bc9 +8603 8985 7609505629075557 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj f3f30a13d69032de +8360 9021 7609505626576062 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 886492b91ae3a432 +8535 9054 7609505628426194 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 85e20e7d365acf2c +8756 9197 7609505630586829 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 3e494735933af065 +8795 9208 7609505630908744 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b1da40ddd0545b7b +8812 9215 7609505631123983 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 7ab417b06e1fe8ae +8369 9223 7609505626742316 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj def629ac8f9981a2 +8830 9273 7609505631423888 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 39904d1167bd4ab2 +8946 9280 7609505632408661 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 166ec9a37892e8e1 +8923 9366 7609505632242403 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 3f8a484c8f6f6c6f +8915 9402 7609505632242403 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b070c320a6cafa22 +8785 9417 7609505630908744 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 664de42538e83c3e +8904 9424 7609505632076600 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 9f65b4c057e1f1c +8979 9481 7609505632755744 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj ad5f39868dce1327 +9024 9556 7609505633289038 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj ec8a3e94ad847a80 +9209 9566 7609505635074618 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 38b528b130808325 +9054 9578 7609505633575867 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj da0812ccc6b480ce +8985 9589 7609505632924313 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 3426f8015f8179e8 +9197 9602 7609505634909309 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 4c344f508ef9fad3 +9218 9641 7609505635242562 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 1ec4574c32ca9139 +9273 9670 7609505635755558 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 7eac30fde1cca1a1 +9223 9689 7609505635242562 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj e285654f840d5ed2 +9281 9709 7609505635755558 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 95944fd0aa5b9ac0 +9370 9749 7609505636742854 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 335e54abb16b0c0 +9418 9858 7609505637257411 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 883456c3ed2ef6b +9407 9872 7609505637075662 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj 575743fc0f86956b +9427 9976 7609505637623658 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj bb963b522b57ecde +9689 9999 7609505639958733 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj e82ae703f36ffcd2 +9482 10004 7609505637757989 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 1c4ecc952ffbbdfc +9602 10011 7609505639075238 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj f1e0602f3772e9ba +9749 10090 7609505640456179 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj d1d33eeff047f88 +9590 10101 7609505638909383 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 871f4d778f25e2f6 +9560 10107 7609505638592514 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 610225d3f8bb514d +9573 10112 7609505638741574 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj 21b05ee858cc5e9 +9710 10129 7609505640138263 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj 7e17d853f7f2a7b6 +9582 10155 7609505638909383 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj cd1c6b399cb318b6 +9670 10228 7609505639742906 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj 1f7483e1532ed83 +9641 10234 7609505639462480 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 6f2fb74bb251981b +9976 10346 7609505642742481 esp-idf/esp_netif/libesp_netif.a 3a1c0205864875f5 +9872 10406 7609505641742221 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 696ce179e8554a9c +9860 10424 7609505641575346 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj b01b3cfdf68d11eb +10113 10504 7609505644076323 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj e739184307436cfe +10107 10539 7609505644076323 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 292dffe3b5972c70 +10091 10547 7609505643921997 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj 8cfe396370024277 +10011 10565 7609505643076233 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 3e4577453ffd1878 +10228 10573 7609505645253632 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c6/phy_init_data.c.obj af49117789d47c8b +10129 10613 7609505644369503 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 2919588aa5ddfec3 +10005 10620 7609505643076233 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 3ea76075615054fe +10234 10679 7609505645409007 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj 51882b0142273c9f +10102 10684 7609505644076323 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj 308d964f08d1f83d +10347 10888 7609505646409237 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 8bad67112a07a193 +10156 10984 7609505644630773 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj 3bf7964ed23f6899 +10407 10993 7609505647121551 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj e6a89233de8b238b +10620 11030 7609505649254178 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj a6e4aa44ae5cff5e +9999 11058 7609505643064921 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 512e3e41112b9b39 +10424 11092 7609505647284682 esp-idf/lwip/liblwip.a dec9b3e2fafc9cd9 +10679 11275 7609505649788899 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 93919cc301e98fa6 +10574 11349 7609505648789762 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 140f22eecefd63a7 +10504 11359 7609505648089721 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj c60afaec6ab3fd26 +10687 11374 7609505649923350 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 3235da90967cf9f5 +11093 11421 7609505653908351 esp-idf/vfs/libvfs.a 2d453ad3e9d5d6bd +10892 11431 7609505651908432 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj 3273a7b2f820be39 +10985 11437 7609505652909892 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 4f997f2815244f4a +10539 11481 7609505648408945 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 963982ac1b3ad5ea +10566 11582 7609505648757446 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj 35d0c2df163a46bb +10993 11599 7609505652909892 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj ce9d70591097edfa +11421 11614 7609505657254373 esp-idf/esp_vfs_console/libesp_vfs_console.a e77da0e660addd17 +11045 11655 7609505653421110 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj a71f5dd3add46363 +10613 11672 7609505649128892 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj abf8d5f4191665c6 +10550 11699 7609505648622343 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 30a5ef5835b52efd +11614 11776 7609505659075547 esp-idf/esp_phy/libesp_phy.a b067b032c29f5a6a +11062 11800 7609505653575966 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj 6c72471e8b921b9e +11584 12010 7609505658908772 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj 6c2fcf21dedb386d +11776 12044 7609505660757335 esp-idf/driver/libdriver.a 366aa2c8e84ac869 +11481 12054 7609505657789831 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 31de5cecbf71cd3c +11374 12070 7609505656742735 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 315bb093e5b3208c +11437 12084 7609505657431159 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 246f475419a0689b +11431 12123 7609505657254373 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj 9abad1a16d895e34 +11599 12131 7609505659075547 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj ee8179e01251658b +11658 12163 7609505659593146 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj d45bba4df80209f3 +11289 12180 7609505655909031 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj a2ba2cd37636f32 +11369 12190 7609505656742735 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 4155e75c199dbb8a +12017 12199 7609505663239862 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj bf5c202ce17ccaad +11673 12358 7609505659742328 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj ef20b964e1b21311 +12199 12428 7609505665070539 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj f1fa8eec50a63875 +12045 12433 7609505663408846 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a 701a531d79256fb0 +11701 12453 7609505660075282 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj 285b6a1cf4859124 +12135 12613 7609505664420682 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 79d5b40f3b9f04df +12094 12633 7609505663922098 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj d4dfcc96570f4f4f +11353 12640 7609505656589090 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj ef3242d3efd0f3cd +12126 12645 7609505664288841 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj 3d878b0801d934c8 +12170 12664 7609505664791565 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj ee354a07f5b33116 +12078 12676 7609505663793619 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 9cf8333ca2627eae +12434 12711 7609505667409164 esp-idf/esp_driver_parlio/libesp_driver_parlio.a b2df3445ab0f6345 +12060 12721 7609505663623705 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj 5f0bd14fd7c58dde +11803 12727 7609505661075764 esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj b54c470ef0f21d5e +12191 12732 7609505664964002 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 1e258301899f0de1 +12184 12782 7609505664914007 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b8b402414503bb80 +12712 12925 7609505670093108 esp-idf/esp_driver_ledc/libesp_driver_ledc.a 79ee459597b000df +12454 12996 7609505667575486 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj 6a2a30f8bb6d2c45 +12428 13005 7609505667254033 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj caac485d1cce8fe6 +12634 13054 7609505669408865 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj ba5fb93a7eb2bba3 +12358 13112 7609505666574751 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj a34a6b29d5afe02c +12640 13164 7609505669408865 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b8a987559d6418a7 +12614 13180 7609505669075557 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj 86bf146cc7d73c9 +12677 13225 7609505669791998 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj 543f44bbf3b03058 +12929 13283 7609505672389359 esp-idf/esp_driver_i2c/libesp_driver_i2c.a c9f75459b4639967 +12671 13292 7609505669787094 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj febc5ffcb4f60c6d +12727 13302 7609505670263915 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj f956a2f591f5f74 +12733 13308 7609505670403806 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b23cf927d063e672 +12722 13313 7609505670263915 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj ea502e377b20e4de +12646 13354 7609505669573827 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj a098722fd84d9b29 +12782 13367 7609505670788682 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 4ac0f0536ecd42ed +13010 13455 7609505673090270 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj 9948f837bf26df2d +13283 13528 7609505675902895 esp-idf/esp_driver_sdm/libesp_driver_sdm.a 31fefacec7f98f53 +13187 13557 7609505674908133 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj e265509611422988 +12999 13610 7609505673070673 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 70812e6a74a87b53 +13542 13692 7609505678453532 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 7ec2e3176ba69a49 +13174 13769 7609505674741965 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj e00f2cca60a1b0ca +13692 13844 7609505679921133 esp-idf/esp_driver_rmt/libesp_driver_rmt.a 94e13bab8d53d915 +13057 13877 7609505673622183 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj d7fc415a20308a80 +13295 13883 7609505675957476 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj aae303d0225118a0 +13236 13896 7609505675455332 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj f439dbea2d4bce08 +13847 13959 7609505681446015 esp-idf/esp_driver_sdio/libesp_driver_sdio.a ab0128ed6fe8625 +13147 14047 7609505674575513 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj 9121b6cd00a030af +13961 14104 7609505682575766 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a a3405c06e63672cc +14105 14240 7609505684122571 esp-idf/sdmmc/libsdmmc.a 6cedb03d9c9fdd9d +14049 14305 7609505683570284 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj 33621694b3ba8914 +14241 14371 7609505685408194 esp-idf/esp_driver_i2s/libesp_driver_i2s.a 40f3740d96eba106 +14371 14476 7609505686742893 esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a be19b11e62150bba +13770 14556 7609505680741977 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 37bbda4a6612ca2 +14477 14579 7609505687742064 esp-idf/esp_driver_spi/libesp_driver_spi.a 4b9879e8c4b528f0 +14305 14622 7609505686089059 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj 735c1de8aeb757a2 +14579 14655 7609505688742367 esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a 122b5e5af7554d50 +13878 14708 7609505681742219 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 63adb1f5f3d10c51 +14622 14855 7609505689254914 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj d0c5ad8d4682d303 +14714 14999 7609505690124818 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 3d096c46447a9972 +14655 15048 7609505689623470 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj c5f4b256031aa378 +15050 15851 7609505693575102 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 3d0b19914169e062 +15016 15948 7609505693240214 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj ad033d593fb7d06a +14855 16290 7609505691574052 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj bdde4dd10e552e75 +15964 16774 7609505703075530 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj a2b3910986cbc5ad +15869 16798 7609505701742909 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj f92249d959b5f3b6 +16299 16908 7609505706076281 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj fd6f0042431603b9 +13308 17118 7609505676088812 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj dcfb3cb2c25419bf +13562 17163 7609505678589484 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 202f2aa3993f76bb +16809 17171 7609505711256879 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj ff21d36dfea3127f +13896 17245 7609505681908609 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 80fcfe1402fb5d4c +13356 17264 7609505676621797 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 85a1a656329757eb +13890 17335 7609505681908609 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 5e3676bef5e386a +13313 17351 7609505676088812 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj c9607a4eec747efd +16933 17361 7609505712559744 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 7673a7344e3bac02 +13614 17397 7609505679237032 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 3d6c99a9a8e3cd2a +16775 17480 7609505710742028 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 942563a37166fe44 +17124 17489 7609505714403328 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 4e0066dcb8217538 +13372 17497 7609505676754742 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj e0f8c1c2c2b85029 +17164 17505 7609505714624612 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 7a1ae32991502f90 +17245 17620 7609505715426555 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj 679ae9b42a965a6b +17264 17634 7609505715575391 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b7dff06e9d85c861 +13487 17647 7609505677909244 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj c5e398376cb85980 +14556 17652 7609505688588399 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj d865c4ed2cc1f8a7 +17172 17750 7609505714791419 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj 430568696840ba76 +17352 17756 7609505716575083 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj 63978de998a7815 +13303 17811 7609505676088812 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj e72b5a1581ba2915 +17402 17821 7609505717088239 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 90dccb919681f1d1 +17505 17854 7609505718075721 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj bf5d26e7e06babab +17647 17880 7609505719408631 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj c755b6ca4e284446 +17497 17938 7609505717908777 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 60ab25dd5f6ea225 +17635 17958 7609505719408631 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 750dcacd39ebf5ac +17620 17974 7609505719279344 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj 53b2c7d3996fcb94 +17480 17980 7609505717755091 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 3c59777797891388 +17811 18040 7609505721125874 esp-idf/nvs_flash/libnvs_flash.a 877e78cb9b3f10f9 +17821 18061 7609505721255171 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 119583a223705905 +17756 18079 7609505720574814 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 74eb63e265892e4c +17489 18093 7609505717908777 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj d0b6d183389f820e +17750 18098 7609505720574814 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj a3d2d6c386a31f4e +17653 18106 7609505719574290 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 528f2b419e9fd6d +17880 18128 7609505721791973 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj bd5390146ba3c1e2 +17365 18151 7609505716575083 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 6a2388753e278a6e +17856 18189 7609505721574638 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj d656aad791cc1e35 +17975 18266 7609505722741735 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 475b95ccc1b75fce +17335 18275 7609505716408401 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 8a629494898de260 +18099 18362 7609505724064548 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj 87eb0ce30b703322 +18080 18377 7609505723908317 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 1e2edad8be5e5b24 +17958 18382 7609505722575553 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 6d88756c331af56a +18107 18425 7609505724129288 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj dac633492f4172f7 +18093 18435 7609505723908317 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 32e5724905b8bce5 +17939 18441 7609505722422466 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 44aa3764c4ac4427 +18040 18500 7609505723424908 esp-idf/esp_event/libesp_event.a 4458544f00126be1 +18128 18555 7609505724289540 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj e276218a60f8d234 +18061 18584 7609505723575899 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj bb40a0b9244ebbea +17980 18594 7609505722896788 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj e2b15bf79dc5c1cc +18189 18612 7609505724908561 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 3e085435a9501b1b +18152 18643 7609505724644724 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 689dcb3fdd63eaf4 +18267 18653 7609505725742216 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 2ccc3327355e700b +18276 18709 7609505725742216 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj c084e7ae9aa84855 +18382 18816 7609505726903088 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 12f04c2db1dd09d1 +18571 18867 7609505728755324 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj 83f8a920d98192f6 +18441 18873 7609505727457451 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj 6154cb04e8f534cf +18500 18894 7609505728070071 esp-idf/esp_driver_uart/libesp_driver_uart.a 8db2757b3e74e332 +18617 18927 7609505729256654 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj fe297beb1371d769 +18602 18956 7609505729074760 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj 542a3d0ab61fab74 +18425 18961 7609505727288451 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 4a5f7442ec9ef4a3 +18709 18970 7609505730074726 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj cd097e8542cfe1a8 +18644 18978 7609505729455451 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj d1878c3a5678a86e +18435 18985 7609505727433458 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 7f425edce46e316 +18589 18994 7609505728909081 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj c8d4c9a670804939 +18363 18999 7609505726575501 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b7f1a360c1fe796 +18653 19011 7609505729591428 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj d67dbbe35781c2fd +18912 19169 7609505732121770 esp-idf/esp_ringbuf/libesp_ringbuf.a dcf6e2f800187cf8 +18816 19232 7609505731238535 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj 320bb23c73ac2cd3 +18979 19238 7609505732790024 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 2d5694a7b6040421 +18377 19312 7609505726742916 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj d42717166462078c +18947 19342 7609505732569868 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 2f2ded9dae07f1b +19169 19354 7609505734743665 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 8e687dc472c12313 +18994 19396 7609505732931309 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj a82a94150511a380 +19011 19404 7609505733141944 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 7116fe2aad3703d0 +18868 19416 7609505731742002 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj facf247725390faa +18973 19425 7609505732790024 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 57da4e0ac705e386 +18963 19483 7609505732624856 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj d065e6d04f7ad6c8 +18874 19599 7609505731742002 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj a7f6e4c0b87ebfc0 +19356 19607 7609505736574096 esp-idf/esp_timer/libesp_timer.a 8c7a84ae4566fc37 +18956 19620 7609505732624856 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 61695aab0851835 +18988 19631 7609505732931309 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 597fd66e0f9a23ba +19238 19654 7609505735421056 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 7fc4c09edb98091a +19313 19671 7609505736090242 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b8d74e8ecb269c0d +19342 19679 7609505736408468 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 4e6aba60235d37c0 +19416 19728 7609505737239274 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_clk_tree.c.obj 53cdf1764f21f6d3 +19609 19790 7609505739075008 esp-idf/cxx/libcxx.a 6b3c08d0cf09776f +19426 19857 7609505737329712 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj ff0733b53d8f7d55 +19483 19883 7609505737913346 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 7735aadf7a3331cc +19404 19906 7609505737088505 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/io_mux.c.obj 67816cbfcd95ae8f +19232 19919 7609505735403300 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 2fbc1fc845ef1f8e +19398 19946 7609505736960728 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 4552aace2e3e5807 +19680 20023 7609505739798218 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj 2d3a059cd86b688f +19000 20110 7609505733079906 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b7ed3e66340dc5dc +19602 20120 7609505739075008 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj 4b39af423e1a8b80 +19790 20129 7609505740957566 esp-idf/pthread/libpthread.a 33ac02ec5d808f93 +19622 20144 7609505739288805 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 6c80a1455d01e8b3 +19632 20150 7609505739388898 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 24a84cee0e1e3ee8 +19897 20160 7609505741908025 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj 2f1eaf9a399a1abb +19922 20178 7609505742296505 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 8f0a044c35f6cc85 +19656 20191 7609505739574506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 4ba48b155823a64f +20025 20231 7609505743288431 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj bf283fd13a263acd +19671 20324 7609505739786503 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj 25401c38f70110f2 +19858 20379 7609505741588265 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj bdf65f6196fd2a93 +19906 20418 7609505742074477 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj 21b6cbd300a85586 +20134 20439 7609505744408089 esp-idf/newlib/libnewlib.a ce36d3428288db84 +19948 20470 7609505742579902 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 624eada45b3edec0 +20123 20475 7609505744319274 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj d456616687229f39 +20161 20540 7609505744574166 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj ffd1437bf5c9cdf2 +19728 20551 7609505740253360 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 9070e77e897bad60 +20231 20710 7609505745289981 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj aa349b87d257dc7b +20185 20718 7609505744923175 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj 8ca6b1c87d80bbe +20418 20744 7609505747259407 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj 72bdcbbead1d6568 +20114 20762 7609505744075029 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj 7ff41597e7850dad +20151 20780 7609505744574166 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj 455bbee8455b89ba +20394 20821 7609505747088532 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj ea3971d987c0c8c7 +20192 20840 7609505744972166 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 27f0772edf468ed9 +20144 20850 7609505744408089 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj 484e6b49ad469c96 +20478 20856 7609505747759885 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj fbb891e84a5b3dba +20470 20863 7609505747759885 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj 154c2e9cbdfe0f0c +20540 20869 7609505748420982 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj 400da9907e7c827d +20325 20874 7609505746408076 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj 94aff574fa41f691 +20732 20908 7609505750403156 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj 3b9395bda86d37e5 +20869 21017 7609505751741838 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 6b8c4500e0411ecc +20558 21023 7609505748574906 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj c59bd3bb386f1e84 +20910 21076 7609505752125662 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj 1780e07696e54c12 +20858 21104 7609505751575503 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj 8a20c5e2284601ff +20763 21130 7609505750574112 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj 1349994bff7f698b +20440 21142 7609505747408326 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj 50fbf2b98c241c3e +20874 21149 7609505751741838 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 13d19c61a1d11463 +20864 21176 7609505751575503 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 69c009cf29ebd44e +20749 21182 7609505750574112 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj 4c00c7fe5c9f1e0 +20791 21190 7609505751069852 esp-idf/freertos/libfreertos.a 1a1b3a3b8bf3287f +21017 21232 7609505753249233 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj 6932ac55d432ab33 +21023 21269 7609505753309284 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj 603554fdd9970643 +21077 21276 7609505753813853 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj ca68f1ebb3f03918 +20832 21283 7609505751420717 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj c8e193f44861bdb0 +20712 21366 7609505750074809 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj 920f5a9b79727b3 +21160 21376 7609505754754566 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj aa6f79d5ce430868 +21105 21381 7609505754075174 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj 548284092991de02 +21233 21386 7609505755421359 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj ea89f7a4efe21472 +20844 21392 7609505751420717 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj 939d0579ff383fa4 +21130 21396 7609505754379094 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj e9ab07806d592f9b +20851 21403 7609505751575503 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj 56e6f5ae2dab269e +21191 21416 7609505754939852 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj 501cda9295ee71cc +21142 21441 7609505754470332 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj 6ed1919fddb70550 +21177 21458 7609505754754566 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj 84b12aeb68ef5a5a +21182 21471 7609505754754566 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj 60fabfdc3f7d0a77 +21276 21498 7609505755741390 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj 843996f79d432433 +21283 21546 7609505755911791 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj 641a42dedcf540d9 +21270 21552 7609505755741390 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj 8f7c8fa9ce4d53c9 +21417 21557 7609505757246602 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj ceef02b28848472c +21392 21577 7609505756908146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj 8c97e40ade2f9b0 +21381 21594 7609505756741978 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj cea8f323d239a713 +21386 21641 7609505756908146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj a47db14f351b3567 +21442 21661 7609505757420810 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj df853e839f2d1bb4 +21397 21689 7609505756908146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj acc1c9534da28b82 +21404 21720 7609505757074596 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj ab44797dca0bfc97 +21376 21725 7609505756741978 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj 78ce002084525b2f +21458 21742 7609505757575803 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj 6c5ec81ea1e2c601 +21471 21747 7609505757786320 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj 46a0c091b894e061 +21594 21834 7609505758921195 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj 27ea60dbc5f48a73 +21743 21941 7609505760452912 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj a4e2f309d718b651 +21526 21946 7609505758421346 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj ab0767e64f3891ee +21748 21971 7609505760452912 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj f63f822f2a979f62 +21547 21989 7609505758421346 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj dd0f9dbc31b271d9 +21366 22004 7609505756741978 esp-idf/esp_hw_support/libesp_hw_support.a d68d48e6a6df24b5 +21641 22013 7609505759421852 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj ce13d521d1726dfd +21690 22027 7609505760087252 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 4ff664a5eb175a7a +21725 22043 7609505760329934 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 180bbe668f5e0664 +21552 22051 7609505758598555 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj d48e00f83789fb49 +21661 22064 7609505759574924 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj edb21b72dbb62c11 +21720 22071 7609505760279888 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj 2748496d5d5f15c +21577 22086 7609505758802104 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj d8632176166bae6c +21835 22094 7609505761408285 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj e31c7189e097a97a +21557 22168 7609505758635628 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 7a9db6c767708fd8 +21971 22206 7609505762740803 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 5186a166c1d2eabd +21989 22290 7609505762965356 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 6eb7a5a96b0b807a +22013 22311 7609505763127364 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj feb4d387f6428f03 +21941 22320 7609505762408595 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj 1f929e01793d0b6c +22064 22332 7609505763588409 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj 3cbe71b134fe8350 +22027 22348 7609505763253799 esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj afe0a91d6a546b8f +22004 22362 7609505763119771 esp-idf/esp_security/libesp_security.a 3a7869a64f1f0c1 +21946 22371 7609505762408595 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj 67ae86759b910d5 +22095 22445 7609505763960537 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj 4f0784e1c53895e7 +22043 22455 7609505763455464 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj e47e57856b1eb811 +22072 22462 7609505763791141 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj e3cfebadaf47254a +22051 22468 7609505763588409 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 8d0943a99973b74b +22088 22501 7609505763960537 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 9062b56e60f42a25 +22332 22545 7609505766399525 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 542d913adf3367de +22170 22605 7609505764741536 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/clk_tree_hal.c.obj cc9295f1b031d616 +22311 22611 7609505766074742 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 80ce2fd11087bfda +22207 22625 7609505765074701 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 27cc0537023c69d7 +22468 22641 7609505767741717 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj 72df3479fac1b2e9 +22362 22646 7609505766623611 esp-idf/soc/libsoc.a a418a6f0984ee02e +22371 22687 7609505766767480 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 381b02648c0f6e1b +22349 22714 7609505766456974 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj fda53229a15ed50e +22290 22726 7609505765908052 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 3522beb2afc9503e +22320 22749 7609505766279416 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj 83b2e0f925273dc6 +22455 22802 7609505767574707 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 4ed5ed5f16d7c06f +22462 22809 7609505767574707 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj c76f183588ca6c13 +22446 22814 7609505767408166 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 81e37b0d2c3448c7 +22501 22824 7609505768121710 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj 3b760b01ff077d6b +22646 22912 7609505769408268 esp-idf/heap/libheap.a ed128f236b10984e +22545 22928 7609505768408418 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj a4c730c04a3f57a8 +22606 22933 7609505769087566 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 4cba93b0ad730614 +22620 22958 7609505769279702 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj c2e4e3d8ef880179 +22688 22963 7609505769930365 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj a67e93c57625dd0e +22726 22968 7609505770338035 esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj bb228ea5b10053fe +22715 22991 7609505770074858 esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj bcf1d1ef428c87de +22626 23040 7609505769329748 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj ad2f02ec4767e091 +22641 23122 7609505769408268 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 208ac17cf7ce7ca3 +22804 23176 7609505771075008 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 51692a26bdafe190 +22829 23183 7609505771420046 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj 23c124d5d45ba9b7 +22958 23209 7609505772594991 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj d9f186303f20a966 +22928 23218 7609505772358607 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj cb07a7477eeac950 +22749 23230 7609505770569613 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 17699e98a8bdd329 +22963 23260 7609505772594991 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 3868f91505d19eb8 +22934 23269 7609505772408275 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/modem_clock_hal.c.obj 688d24ee5fa4379d +22912 23301 7609505772075277 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj e7a3e42fcbd4a226 +22815 23315 7609505771075008 esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj d557c7f434d946b9 +22970 23325 7609505772756891 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 86b70e807423766a +22809 23337 7609505771075008 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj 8114a734ded0c4c7 +23040 23346 7609505773423777 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj adc8d37b197cf338 +23346 23512 7609505776454167 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj cd69d49a5e99fc92 +22992 23517 7609505772955897 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 7fb2dcf8d17b839f +23122 23526 7609505774299744 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 4bb106e46a85de1c +23219 23531 7609505775268374 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj 210e912e85bf66 +23260 23540 7609505775624927 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj bd13b1c0d9c3012e +23270 23567 7609505775754471 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 179987b1c1cc067c +23302 23605 7609505776074713 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj c780b99fca2240d5 +23316 23610 7609505776236089 esp-idf/log/liblog.a 18e5bfe7415ae04d +23184 23615 7609505774908086 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj f8e0b33d960ac3a2 +23178 23620 7609505774756335 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj d5308bc6e9630196 +23213 23653 7609505775074911 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj 33f7ca157c339fd2 +23325 23659 7609505776292065 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 2510eef85ad400a8 +23337 23664 7609505776454167 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 467c565bfb73f306 +23526 23721 7609505778339280 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 9ff739503aec7487 +23532 23734 7609505778389323 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 8d2a25dcc388ac35 +23231 23743 7609505775378478 esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj 67122487f8ce5217 +23512 23815 7609505778074786 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 7bc06e728c45c3b +23606 23846 7609505779088230 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj bf3eafceefc5ebe1 +23568 23852 7609505778756180 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj 8c18ee77fbefa973 +23518 23882 7609505778249198 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 29473fed74ac03b3 +23540 23894 7609505778407523 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj c7131f1f6bd0282c +23611 23905 7609505779088230 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 439f737c66b47a8e +23615 23949 7609505779088230 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 6922d7eca948358 +23653 24045 7609505779609770 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 239b2a0626fe6b47 +23664 24092 7609505779624003 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj fc285a1eb31f3c8 +23659 24097 7609505779624003 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 5742ba20149ad4a3 +23721 24140 7609505780270791 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj affd3a558a316d53 +23905 24160 7609505782127324 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 76280af29ce1d221 +23846 24201 7609505781407831 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 803f35cdc0af6107 +23855 24245 7609505781573645 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj d52e007d33c850fb +23734 24279 7609505780407115 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 690f038656c16a06 +23743 24308 7609505780407115 esp-idf/hal/libhal.a 8401d6562f739ae7 +23949 24328 7609505782569552 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 1a1bab36c061b439 +23895 24356 7609505781954682 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 504d001b2a80391f +24045 24397 7609505783419889 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj dc7b1f2cdcc535a9 +23815 24430 7609505781088502 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 41453c0af7080eb8 +24140 24558 7609505784453489 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj d620588a200b55b0 +24179 24573 7609505784956572 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj 19dd977ecc60da69 +24092 24601 7609505783907325 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 1fbbd9aa3557a48 +24308 24636 7609505786118442 esp-idf/esp_rom/libesp_rom.a 4324f5d5d38b698b +24097 24643 7609505783907325 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 1c65460f8e83f443 +23889 24703 7609505781954682 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj e43039a4beec3966 +24280 24709 7609505785754194 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj 7ca4ad9666abeb2a +24250 24745 7609505785609566 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 4177b7b33b1d1ba2 +24356 24828 7609505786622555 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj ba319d742aa9c94f +24328 24835 7609505786256173 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj c7ed01afd3ba9626 +24573 24880 7609505788741559 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj a92495727f52487e +24431 24892 7609505787252675 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj 7ee4315899869ccf +23623 24913 7609505779287535 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 5fa6cbc7bffe9306 +24400 24922 7609505787079436 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj e81db93aadce339 +24204 24927 7609505785236256 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 159f1dc69574d246 +24637 24933 7609505789423516 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj 20af5ae68b6b993f +24710 24939 7609505790122097 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 98048ba51204bc07 +24558 24945 7609505788574607 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj e35fa48dd94dadcf +24704 25036 7609505790109572 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj 3484568909943306 +24745 25084 7609505790407741 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 812eed20738a1d8e +24837 25089 7609505791407936 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 652ad3a6ca9425bf +24913 25096 7609505792088712 esp-idf/esp_common/libesp_common.a b75bb542b81b13c0 +24644 25109 7609505789423516 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj 10ed5be83239b729 +24928 25141 7609505792358612 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 9f4e8a0ff392df30 +24892 25147 7609505791955169 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj cdf2dda181515122 +24940 25199 7609505792455753 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 2e299b2103f7acfc +24880 25398 7609505791740735 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 2c31b26d70c5235e +24946 25405 7609505792455753 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 222a069e3998269b +24933 25431 7609505792405693 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj eee67e0e2953ed3d +25096 25438 7609505793907436 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 3fbb9974d6b9d06d +24830 25446 7609505791379269 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 99899f23b35c3748 +25090 25467 7609505793907436 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 71cba138cf44a2d0 +25199 25484 7609505795069490 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 18b3a15b13ada175 +24922 25541 7609505792298558 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 1d7814efc205863b +25406 25673 7609505797074411 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/ext_mem_layout.c.obj aebc6502dd3e9896 +25084 25690 7609505793907436 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 23af2af14609d1dc +25043 25704 7609505793574125 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj febd0e485c25f605 +25110 25709 7609505794119448 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 35a00f5f0d6d280f +25142 25719 7609505794425101 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 7f012471611c4106 +25148 25749 7609505794425101 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj ccf0fcdd78952847 +25439 25783 7609505797407614 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj 7d151d8c1e7690a0 +24610 25844 7609505789287185 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj 66797ed9883c145d +25485 25856 7609505797924899 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj fc27b61cc5e4c1b6 +25432 25863 7609505797407614 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj 4ae3c78801a1912d +25541 25876 7609505798407983 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj ccd5bc3b04eff9a7 +25467 25912 7609505797746279 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj bfd4c0e32547c01f +25399 25954 7609505797074411 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj fc78ca531a14b156 +25673 26041 7609505799740824 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 8fcd95ec6db64c73 +25719 26047 7609505800266024 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj fd24523dddd28dab +25446 26107 7609505797407614 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj fcf7f33addb7327a +25709 26129 7609505800074236 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 2b38561d1dafeb63 +25699 26138 7609505800063770 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 351f388366caf29c +25704 26169 7609505800074236 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 5c2ad4d7b6523c22 +25846 26204 7609505801408132 esp-idf/esp_system/libesp_system.a c78ce08b5fcf28fc +25877 26231 7609505801741590 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 4c35d7d726b2ccb6 +26048 26261 7609505803562908 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj e735fd417e1f05cb +25784 26276 7609505800912734 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj ee40eb4cef99c9f9 +25858 26310 7609505801574555 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj df9a4854a8bcb2ee +25753 26410 7609505800609469 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 464754931cadb4cd +26129 26455 7609505804369332 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj b01b7fa84baa590 +25954 26461 7609505802600248 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj c57099f07e5a3c7d +26042 26472 7609505803407864 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj e2701cea37fe2dcb +26138 26483 7609505804408104 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj 8daa9b0171fe2065 +26204 26508 7609505805074253 esp-idf/spi_flash/libspi_flash.a e9d8b6c358b1ba85 +26231 26571 7609505805287605 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 7874ff62c0d71eb1 +26171 26585 7609505804794526 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 9e0cea95f3718fd0 +26115 26592 7609505804269241 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj 1784d9379226b30d +25912 26613 7609505802128885 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 86d833c2b3982066 +26276 26640 7609505805795111 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 82f361ad2cf5a6c9 +26483 26678 7609505807902710 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj cdb8fe87f45ecd96 +26475 26743 7609505807789362 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 9685e662d384c34a +26317 26773 7609505806246163 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 4961a28d617df6cb +26261 26803 7609505805736025 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 727976d7cfcc7e80 +26456 26820 7609505807573939 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj e6aa3dd3a824325c +26411 26841 7609505807074623 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj c26be503c0ec4ee +26586 26849 7609505808908120 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj dbe21714969c9a0e +26508 26866 7609505808098353 esp-idf/esp_mm/libesp_mm.a 1de8e93e9c0d876d +26576 26892 7609505808754577 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 76e5a5fe28d7d891 +26616 26900 7609505809237629 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj ae7cf37452e63a40 +26595 26906 7609505808908120 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 67ace6e7ac8b7806 +25869 26912 7609505801741590 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj f888a70ee2bd3f93 +26461 26982 7609505807573939 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj f6ee4b6251d820fa +26811 27074 7609505811125039 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj bd0a6aac78eb6f51 +26900 27133 7609505812074591 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj d1e5a61e7a52c0c4 +26907 27157 7609505812074591 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj a04b8036612bed3c +26678 27164 7609505809741184 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 2541d51882d4cbc6 +26641 27170 7609505809454082 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 704e134f628f9760 +26774 27226 7609505810740686 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj e75d7119842a7d80 +26912 27246 7609505812074591 esp-idf/bootloader_support/libbootloader_support.a 87f1d0f6d58ca12f +26983 27269 7609505812907604 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 61d9d718938085ac +26744 27328 7609505810423783 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj 6412667046c637df +26843 27433 7609505811408276 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj cba5c45640614e94 +27084 27446 7609505813907544 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj efb8f854f7b99f79 +26826 27459 7609505811252701 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj ad34cb8f7156eb4a +27134 27511 7609505814412376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 304c52899350a757 +27158 27527 7609505814586898 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj c053a92d79d5630d +26893 27543 7609505811920109 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj eb7f8bb92be52854 +26867 27597 7609505811745976 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 241d47afc18a97fd +27247 27630 7609505815420056 esp-idf/efuse/libefuse.a 7f9d25315bead6b2 +27171 27639 7609505814740981 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj aece02b25b6201d2 +27328 27760 7609505816258100 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 60923d7d097eee96 +27269 27776 7609505815740823 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj eac0bb0d4b9d4ce1 +27164 27804 7609505814586898 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj 8d4ff37028ad7662 +26849 27812 7609505811569180 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 8c62680395d67c7e +27598 27855 7609505818920879 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 4b6f4cbb04b8f4f5 +27226 27900 7609505815290384 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj ae62a4149f4cb944 +27461 27940 7609505817574053 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 474c80f02b6cb3eb +27630 27955 7609505819252857 esp-idf/esp_partition/libesp_partition.a cfd72c67f9806bcf +27639 27974 7609505819407992 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 53a852ee614d740c +27447 27993 7609505817407656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 53a2d139898f2690 +27516 28010 7609505818279124 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 608cef32c481562e +27537 28068 7609505818407483 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj c9802f9472a3829e +27552 28098 7609505818573614 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj f5b8caf1f2eb31c8 +27776 28180 7609505820741137 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 2395cef93edfe315 +27974 28191 7609505822788904 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj 7b1e76aa344e0297 +27940 28203 7609505822408030 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b3b9676677443507 +27804 28220 7609505821073974 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 2ad59fb07cd0f01d +27760 28229 7609505820573653 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 10eecada2bf9ba46 +28010 28238 7609505823119839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 8bc8168e5a38b7ae +27814 28251 7609505821073974 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 98835c547a8159d7 +27956 28292 7609505822621947 esp-idf/app_update/libapp_update.a 5138076bcf6a16e0 +28101 28357 7609505824074453 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 674194b2e5f47cce +27994 28393 7609505822931112 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 238a9fb75fb70b7e +27900 28404 7609505822079087 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b3446c7234ec439c +28185 28422 7609505824908047 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 15598d81541d2e41 +28251 28442 7609505825589276 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 466569f64a642bdf +28222 28532 7609505825308242 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 12079cd2c049988e +28292 28538 7609505825958444 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 94c37b047d01bbb9 +27440 28561 7609505817407656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 8321eec4adce3b50 +28092 28574 7609505823920611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 920e0e7502eddacf +28231 28614 7609505825388316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj bb2feb7345a85476 +28360 28644 7609505826588231 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 64d144944ae5107f +27855 28707 7609505821587677 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 4babaa7a57774dd8 +28425 28759 7609505827290649 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj db3583ca6e6c6b87 +28239 28771 7609505825454723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj e287c3eb755cd207 +28208 28777 7609505825229533 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj c309f7f20b2a3a4c +28196 28828 7609505824908047 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj e0253ff10c356759 +28396 28846 7609505826907666 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 3ecec1c400db5c4c +28545 28854 7609505828573669 esp-idf/esp_app_format/libesp_app_format.a e0a48505a88b9d07 +28568 28880 7609505828740700 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 50807623a8941c7 +28404 28925 7609505827073920 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b863f3d43687c3c3 +28614 28935 7609505829131305 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj a0f37c1c07fcd33f +28578 28958 7609505828740700 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 17a60374b95d0ff5 +28759 29020 7609505830621603 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 9c3091417caf4dd4 +28644 29083 7609505829406833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 4d47bba193b747fe +28926 29160 7609505832284485 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 48ff86bc2b00506e +28533 29168 7609505828408458 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj d737f73759558b54 +28771 29184 7609505830754221 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj da2c201bed6ff43e +28777 29189 7609505830754221 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b799188217286bb2 +28707 29225 7609505830074101 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 951ed835b20e14f9 +28935 29230 7609505832432498 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 821b2284d72f7aa0 +28895 29238 7609505832124535 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 8be427a15f2e0902 +28854 29246 7609505831574076 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 8140cf0cc5ad7ef0 +28442 29254 7609505827453245 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj a767d003b9dcdb70 +29021 29272 7609505833265047 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 7ff9531d16d47ab7 +28837 29303 7609505831447252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 1142f2f1f377f6b2 +28849 29456 7609505831447252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj a46e170c6831f37b +29168 29480 7609505834740988 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj 78bc06d2941a9320 +28959 29530 7609505832633110 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 26a386720c18c7ad +29273 29538 7609505835791542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj 1bf35e57c30bc8f4 +29246 29553 7609505835426224 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj ea1d37b420b2b2f7 +29083 29571 7609505833912469 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 42e00c2bade5d135 +29189 29591 7609505834907715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj e144eb597333c385 +29254 29615 7609505835587532 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj c2b48755d11ba3e +29225 29645 7609505835287589 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5cb583577b0fcae8 +29184 29672 7609505834907715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj d076d1423ad067ae +29238 29680 7609505835426224 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 8307b0f52575cda4 +29161 29738 7609505834586615 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj f787dd0828a1925 +29231 29825 7609505835287589 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 9e1296927e5e9246 +29533 29897 7609505838402443 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj f1123d97e73d8507 +29609 29917 7609505839087342 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 8890989c545be40c +29680 29955 7609505839753260 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj c48ccbd8fe776160 +29457 30010 7609505837573271 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj a58946575ad5ac8a +29574 30015 7609505838741409 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 8b6de0a6989df97f +29483 30051 7609505837907217 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj e60477c4b59e7ae6 +29539 30059 7609505838456348 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 86922a1ae2a960f5 +29615 30064 7609505839087342 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 65a980f8653252a8 +29646 30078 7609505839426776 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj 8e4b3fdd1781b941 +29553 30111 7609505838587160 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj e313e65bfd390836 +29674 30226 7609505839753260 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 891146792ee8899 +29956 30236 7609505842620936 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj d0719edeba533268 +29920 30269 7609505842252865 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 8779d8c5058899c0 +29852 30278 7609505841735688 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj 3714bb80ea9b3945 +30078 30289 7609505843807125 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 42956da9777aea7 +29898 30295 7609505841907369 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj bf66f9db8df04f1e +29747 30301 7609505840574159 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 338a4e15c10f94b6 +30015 30376 7609505843124490 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj f81e09d469c6aa88 +30113 30384 7609505844124630 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 8544d770b99ff0b0 +30059 30447 7609505843573941 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 4a80d14ca22caa62 +30226 30475 7609505845339088 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 17333644afb74bc0 +30053 30485 7609505843573941 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj bf3be5f5a364124f +30270 30545 7609505845740102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj a70a49dc0aa311a0 +30236 30578 7609505845407387 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b121a688984cd75d +30290 30586 7609505845959925 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 8d9e52484f1e9e39 +30064 30612 7609505843573941 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj e512c0acf022675 +30278 30660 7609505845740102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj 96006306d3f6bdff +30390 30673 7609505847073883 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj 12571610feec1b31 +30378 30729 7609505846742031 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj db95c678c0e0df0e +30301 30756 7609505846079108 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 615776d82c4e53e7 +30010 30817 7609505843124490 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj dd41a9ecf2868050 +30448 30823 7609505847453552 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj 975cbd72f5fa6bc0 +30476 30838 7609505847740791 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj f3d09153d83932d +30295 30859 7609505845959925 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj 6ad0741e24462d3a +30554 30991 7609505848586756 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj c00ef696540aff4 +30579 31000 7609505848741133 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 199908f4a98d975f +30485 31040 7609505847907010 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 88159f9eddc2a952 +30817 31048 7609505851245647 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj 47e2b24917840f56 +30613 31074 7609505849122098 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj c072fed2f09f139f +30673 31098 7609505849754407 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 66389640983c58fe +30846 31125 7609505851573714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj 5b439450c1968140 +30586 31156 7609505848907007 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj fccd6250e0c9d466 +30757 31166 7609505850574381 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj 49e84982b4275782 +30730 31166 7609505850286405 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj 3cb8f8e53ae35384 +30660 31179 7609505849626115 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 83cca9a0a48ce611 +30994 31225 7609505852907046 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj c31104933ba0f9c +31000 31244 7609505853073978 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 58e10e4f7879bdcf +29304 31247 7609505836087091 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 619be08e42d16bce +31098 31262 7609505853954924 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj ed03512f57c9c429 +31157 31272 7609505855574197 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir c35bfa4c0f790945 +31157 31272 7609505855574197 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir c35bfa4c0f790945 +30823 31281 7609505851285435 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj a296bfd690809cfb +30859 31292 7609505851573714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj 5af21416fff3567d +31126 31306 7609505854288456 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 572d8d078c10c534 +31051 31307 7609505853588926 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj d6b561892da5282b +31074 31322 7609505853754335 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 805b5386b8f63687 +31272 31330 7609505856286938 bootloader-prefix/src/bootloader-stamp/bootloader-download fa0951aaf1fa196e +31272 31330 7609505856286938 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download fa0951aaf1fa196e +31042 31342 7609505853407025 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 998a3a162246b386 +31331 31376 7609505856785376 bootloader-prefix/src/bootloader-stamp/bootloader-update cdf100332732b66e +31331 31376 7609505856785376 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update cdf100332732b66e +31377 31417 7609505857073138 bootloader-prefix/src/bootloader-stamp/bootloader-patch 72ec0ad959dd3123 +31377 31417 7609505857073138 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 72ec0ad959dd3123 +31293 31639 7609505855907144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 42dd895b51f0ad26 +31639 31699 7609505859407504 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a d45e0d22ded6007f +31699 31756 7609505860072500 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 99221798575cd7f5 +31756 32189 7609505864739116 esp-idf/mbedtls/x509_crt_bundle ab5478ed9811e96a +31756 32189 7609505864739116 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle ab5478ed9811e96a +32189 32404 7609505867073408 x509_crt_bundle.S 7b4264ce600a4822 +32189 32404 7609505867073408 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/x509_crt_bundle.S 7b4264ce600a4822 +32408 32547 7609505867073408 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj bb4ad4734d0015cf +32416 32638 7609505867237214 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 5750f317f6d997b6 +32466 32699 7609505867745519 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj 62da924c6e93710 +32412 32739 7609505867073408 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 3b80b360b08b5608 +32430 32749 7609505867377691 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj 66a355439558e930 +32639 32828 7609505869407620 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj cd40bf56872c094f +32547 32868 7609505868407725 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj 9b83abea7fdd9465 +32458 32890 7609505867623480 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj 2a0b11217ed5b48f +32446 32904 7609505867407010 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 7c584bf2ce85278a +32739 32930 7609505870407657 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj 84d67e6af68ff381 +32440 32971 7609505867407010 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 548aade13b1b648a +32700 32976 7609505870068916 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj 64a2d8a8d66cd41 +32405 32983 7609505867073408 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 531057a2d490491b +32420 33003 7609505867277601 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj ddc1cebdcac44886 +32435 33021 7609505867407010 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj a9225f989e20afff +32462 33037 7609505867623480 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj d493f70db0a60fab +32868 33138 7609505871740683 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj fc5cb8fd39da3b79 +32983 33147 7609505872912155 esp-idf/mbedtls/libmbedtls.a 9d360acb7c759fc8 +32750 33183 7609505870568742 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 6a6695a7eca1816 +32976 33275 7609505872788273 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj a16c928c6c3d3abf +33003 33282 7609505873074175 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 7d33bbf1186e8a02 +32424 33309 7609505867337654 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj f87f283c49cf102 +32930 33314 7609505872257556 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj f5b6230fa1641ea6 +33023 33330 7609505873297798 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 5b7069034e27beba +33038 33354 7609505873418691 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj ade83be38b5f9696 +32829 33392 7609505871252330 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj 53279fe49c1bb1d2 +33147 33397 7609505874407126 esp-idf/esp_pm/libesp_pm.a c0b29ca182fba112 +32890 33406 7609505871964421 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 69ae37357683c5bc +32971 33419 7609505872788273 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 5597a2d857996b91 +32904 33456 7609505872118979 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj e66b628353f4084d +33138 33462 7609505874407126 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj 1bfbf22b5968ccda +33184 33509 7609505874922228 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj 1c6794c9a42506fa +33286 33528 7609505875907448 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj d7b57961f2420a6f +33275 33575 7609505875753204 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b14d3f5a4583a6b3 +33314 33627 7609505876073927 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 7aef5542ea073e77 +33330 33635 7609505876378362 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 7925bc7208a0c65d +33397 33640 7609505876907979 esp-idf/esp_driver_gpio/libesp_driver_gpio.a e1a4c2b56b8890ee +33457 33774 7609505877586643 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b8877df375532319 +33422 33810 7609505877254030 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj a8d99a3d7e3c077d +33354 33817 7609505876618764 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 6cda0eaf1b72f6e6 +33309 33823 7609505876073927 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b400d36c58ebbea0 +33463 33847 7609505877586643 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 6317595fb31bcb8a +33531 33869 7609505878407015 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj a93c378138651a1a +33640 33874 7609505879454270 esp-idf/riscv/libriscv.a d3866669b56ec7e5 +33627 33970 7609505879349041 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj f36c9909cde5affa +33511 34016 7609505878087628 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 1550549ba869656f +33576 34023 7609505878789563 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b85787b9020cf934 +33406 34116 7609505877097398 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 3265b72db7b5886c +33817 34136 7609505881245369 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 27e07456bcde855 +33823 34149 7609505881292369 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj dc541d81e38fa9d7 +33810 34155 7609505881072431 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj e78120f0f65186d7 +33869 34168 7609505881758670 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 27c4531df41e634b +33393 34210 7609505876907979 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj 13a151f21d8f44af +33847 34225 7609505881423797 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj f78b27bd0fd3b4d2 +33874 34277 7609505881758670 esp-idf/console/libconsole.a d395855a1aba4a43 +33635 34362 7609505879422021 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj 4eef3912ac6f88ae +33774 34375 7609505880740280 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 6a8e243df9d4ece3 +33970 34442 7609505882740316 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b967febbdf834cea +34024 34459 7609505883290230 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj be4237af1bfe910f +34210 34468 7609505885120744 esp-idf/protobuf-c/libprotobuf-c.a 631bd0d82e90e0c0 +34168 34555 7609505884764679 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b9c0deb1bacdeb51 +34225 34601 7609505885288879 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 45f421bf092a82c3 +34155 34626 7609505884572936 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj 1349f11c4e1f2f4f +34448 34648 7609505887574257 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 9a84360d2b2d893c +34149 34718 7609505884572936 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj 2ed6cb8baa6ee7b5 +34016 34732 7609505883235281 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj bd0b40f9d1320d8e +34277 34752 7609505885778251 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 889558eb74cf94d6 +34365 34816 7609505886735324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj bb416b5155ce8e19 +34137 34837 7609505884406926 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 29f3d20fac4b4e2f +34463 34870 7609505887574257 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj 46fcb4f3315cbdbb +34117 34957 7609505884237180 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 1c1f123cd3ebb5b5 +34377 34977 7609505886740661 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj deb984da0187001a +34732 34986 7609505890401862 esp-idf/unity/libunity.a 1c4171a6feaa6e38 +34627 34996 7609505889287529 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj c0411b54296963a +34752 35032 7609505890573512 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 9225040abbc92deb +34648 35092 7609505889459623 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj daa4c3c15c3859c2 +34565 35123 7609505888741051 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj 5c4ae6731a343728 +34837 35142 7609505891407266 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj 8ead1bbc5db32a01 +34601 35148 7609505889074111 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b984a151935e9b7e +34816 35163 7609505891237961 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj 3ccca3a13babb8f8 +34718 35168 7609505890254791 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj f8665c0884f59eda +34476 35257 7609505887906970 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 5c87e997b1ef34ff +35098 35366 7609505894098951 esp-idf/esp_https_server/libesp_https_server.a 70bea2298a59f3fd +34988 35402 7609505892906905 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj 46be5eecbacc8b10 +34981 35431 7609505892740160 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 20a18d3b373e7e5e +35057 35455 7609505893906696 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 2437264d0b647d0c +35124 35474 7609505894292274 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 525e3afd18a82359 +34996 35563 7609505892906905 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 1ddb61b552c32a45 +34878 35604 7609505891740533 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj d72d220acf57d80b +34958 35633 7609505892573849 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj 3c51ee4567be82fc +35455 35671 7609505897596604 esp-idf/protocomm/libprotocomm.a e75c8d125f273d7a +35142 35741 7609505894421588 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 33fe794d797e9eb8 +35257 35748 7609505895573474 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 42698f352e705a03 +35163 35771 7609505894629427 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 6134055ff28db07a +35673 35778 7609505899786763 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj 94233b2d10b990fc +35168 35785 7609505894785304 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 3daa9ab4474625c +35148 35804 7609505894421588 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj a874a52ac91dc32e +35805 35955 7609505901121047 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj 57f4fd0a8b22789d +35431 35974 7609505897291336 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj cc89d4abc360bae7 +35412 35981 7609505897074306 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj d9b24d9daab5d63f +35366 35991 7609505896740768 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj 6c575aaa6656eee5 +35605 36052 7609505899073317 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 765f7159ec1f2e6a +35955 36087 7609505902573242 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj 9d46307781720c98 +35742 36135 7609505900421982 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 1d1f6c5abbae5ae2 +35474 36208 7609505897789018 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 76a58844ea017333 +35778 36213 7609505900740168 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj aa6fa1bd439a555b +35633 36219 7609505899411986 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj 441cd9c24844e519 +35563 36236 7609505898573735 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 37548e3f3f1e2c8f +35758 36261 7609505900573889 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 6c4e17f0ad7de00a +35786 36266 7609505900940796 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj d6664f33890e1b1a +35981 36275 7609505902740069 esp-idf/wear_levelling/libwear_levelling.a 946de1bf07f44dc5 +35772 36323 7609505900740168 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 90855e50736da25f +35974 36410 7609505902740069 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj e0705d1f5f5e98e4 +35991 36542 7609505902907285 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj 8a3cd75012681541 +36214 36607 7609505905089640 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 715aa03d45b6018b +36219 36620 7609505905271400 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 65869fd8e46446 +36208 36632 7609505905089640 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj f2289eace381cfe1 +36088 36647 7609505903906249 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 462c8c9579eb9af0 +36052 36749 7609505903573575 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 8dbbb94d68199ffe +36323 36770 7609505906256616 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj ddd5adcd2bcea0d +36267 36796 7609505905745177 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b401510cc9207bac +36276 36814 7609505905809169 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj b6e89822f731d1f6 +36261 36821 7609505905632211 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 7fc598fd72050396 +36544 36923 7609505908406921 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj 8e070ec32e4ac9be +36614 36964 7609505909124798 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj 744223414199e31d +36625 37012 7609505909252957 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj dcbc476b2b76d302 +36648 37017 7609505909407295 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj 713d4d66ace791b7 +36633 37027 7609505909407295 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj 66391ac798a5d422 +36752 37043 7609505910572893 esp-idf/json/libjson.a 897eee801e0a0ab +36236 37060 7609505905406955 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 4168960e267f7b60 +36139 37101 7609505904419581 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 3233f498aeac1007 +36411 37142 7609505907136938 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj 35dccb2daa631bc9 +36823 37269 7609505911287060 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b4b4414ec6d94217 +36928 37280 7609505912367911 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj 58fde16d6a2ab28d +36815 37304 7609505911235148 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj 8799b773662db37d +36804 37362 7609505911121747 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj dc8287726b757165 +37028 37487 7609505913287928 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj dd81cc6ddf158479 +37013 37506 7609505913102488 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj dbc29e4680ee3c7b +37069 37516 7609505913753992 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj dd173ecd2496ed33 +37018 37521 7609505913255106 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj bc8ca42c01165eed +36967 37527 7609505912739803 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj 92486316b438dbb5 +37044 37541 7609505913419524 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 8a3ffd9b56f799fb +37280 37692 7609505915739646 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d2d1f487b94d510c +37109 37759 7609505914086386 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj ce240e8ccbf1741a +37403 37788 7609505917073646 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj aa8d7b45615d5759 +37522 37854 7609505918297385 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 24dca637dbd4cc89 +37144 37882 7609505914423041 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj 58efd67ff06e2e01 +37528 37892 7609505918347429 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 22436681fbbd1bc4 +37270 37914 7609505915739646 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj ce8ad6d0d0ce255a +37541 37939 7609505918470036 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj 115552d80db4dcc6 +37506 37971 7609505918073222 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b9cfe8a1d8fcc7c6 +37516 37986 7609505918236881 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj cbfcc351dfbbc1fb +37304 37996 7609505916073280 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj cea60a57e176d9e8 +36779 38005 7609505910906419 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj dd35523ed8b476e1 +37707 38013 7609505920237366 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj f0d15475aaef3dce +37865 38033 7609505921740026 esp-idf/app_trace/libapp_trace.a ba7b5da00cf8c818 +37883 38103 7609505921906270 esp-idf/cmock/libcmock.a e3ac3e8d46e0fb87 +37904 38111 7609505922072999 esp-idf/esp_driver_cam/libesp_driver_cam.a 25dca4e358ad2b3a +37915 38120 7609505922072999 esp-idf/esp_eth/libesp_eth.a e605a6b71d1dd9ad +38005 38155 7609505923099832 esp-idf/fatfs/libfatfs.a b641bae04b928139 +37940 38156 7609505922457404 esp-idf/esp_hid/libesp_hid.a 9e81c3b003e31d7b +37987 38161 7609505922927068 esp-idf/esp_local_ctrl/libesp_local_ctrl.a f2b6999880e6404a +37971 38194 7609505922741052 esp-idf/esp_lcd/libesp_lcd.a beb046fcbb27e6cc +38033 38196 7609505923410690 esp-idf/mqtt/libmqtt.a 36fd57a34527c6f +38112 38217 7609505924073924 esp-idf/rt/librt.a 353e6d7e06ca6005 +38103 38228 7609505924073924 esp-idf/nvs_sec_provider/libnvs_sec_provider.a c71f2f5df52e28c9 +37996 38239 7609505922927068 esp-idf/espcoredump/libespcoredump.a b3b9058830148d8 +38014 38240 7609505923099832 esp-idf/ieee802154/libieee802154.a 2d1f982ee8d6d810 +37773 38246 7609505920788025 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj e25051801ada6084 +38120 38253 7609505924277608 esp-idf/spiffs/libspiffs.a 62e81b2d7fd2bfbe +37488 38281 7609505917906836 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj eec09bf757c3210b +31417 42382 7609505966737534 bootloader-prefix/src/bootloader-stamp/bootloader-configure 590bbabe796b34d7 +31417 42382 7609505966737534 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 590bbabe796b34d7 +120 236 7609506066580167 esp-idf/wifi_provisioning/libwifi_provisioning.a 370ab984d9abe3e0 +126 3390 7609506066580167 bootloader-prefix/src/bootloader-stamp/bootloader-build 9e8d131a1031cb69 +126 3390 7609506066580167 bootloader/bootloader.elf 9e8d131a1031cb69 +126 3390 7609506066580167 bootloader/bootloader.bin 9e8d131a1031cb69 +126 3390 7609506066580167 bootloader/bootloader.map 9e8d131a1031cb69 +126 3390 7609506066580167 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 9e8d131a1031cb69 +126 3390 7609506066580167 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.elf 9e8d131a1031cb69 +126 3390 7609506066580167 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin 9e8d131a1031cb69 +126 3390 7609506066580167 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map 9e8d131a1031cb69 +112 248 7609506458773510 bootloader-prefix/src/bootloader-stamp/bootloader-build 9e8d131a1031cb69 +112 248 7609506458773510 bootloader/bootloader.elf 9e8d131a1031cb69 +112 248 7609506458773510 bootloader/bootloader.bin 9e8d131a1031cb69 +112 248 7609506458773510 bootloader/bootloader.map 9e8d131a1031cb69 +112 248 7609506458773510 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 9e8d131a1031cb69 +112 248 7609506458773510 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.elf 9e8d131a1031cb69 +112 248 7609506458773510 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin 9e8d131a1031cb69 +112 248 7609506458773510 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map 9e8d131a1031cb69 +108 266 7609506458773510 esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj 8028b68ccac46e98 +248 276 7609506460223138 bootloader-prefix/src/bootloader-stamp/bootloader-install 19105bf736eb1c3e +248 276 7609506460223138 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 19105bf736eb1c3e +268 322 7609506460417000 esp-idf/main/libmain.a 97a845e71bda5372 +276 335 7609506460938477 CMakeFiles/bootloader-complete b4187f8e1c03db6d +276 335 7609506460938477 bootloader-prefix/src/bootloader-stamp/bootloader-done b4187f8e1c03db6d +276 335 7609506460938477 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader-complete b4187f8e1c03db6d +276 335 7609506460938477 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b4187f8e1c03db6d +322 8101 7609506538398395 esp-idf/esp_system/ld/sections.ld 3aaa060dad75807f +322 8101 7609506538398395 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld 3aaa060dad75807f +8101 8150 7609506538733342 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj 57ce090fac3d028 +8150 8654 7609506539239723 JoystickControlServo.elf 3e9ea2555ea94cb3 +8654 8870 7609506546400254 .bin_timestamp 4ee3faad51aedc6c +8654 8870 7609506546400254 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/.bin_timestamp 4ee3faad51aedc6c +8870 8941 7609506546400254 esp-idf/esptool_py/CMakeFiles/app_check_size 2cca91a48e28f243 +8870 8941 7609506546400254 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/app_check_size 2cca91a48e28f243 diff --git a/JoystickControlServo/build/CMakeCache.txt b/JoystickControlServo/build/CMakeCache.txt new file mode 100644 index 0000000..40faa0b --- /dev/null +++ b/JoystickControlServo/build/CMakeCache.txt @@ -0,0 +1,613 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build +# It was generated by CMake: C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +CCACHE_ENABLE:UNINITIALIZED=0 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' + +//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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs ' + +//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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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)/JoystickControlServo + +//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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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=JoystickControlServo + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=3.6.2 + +//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=2 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Disable package configuration, target export and installation +DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON + +//Build Mbed TLS programs. +ENABLE_PROGRAMS:BOOL= + +//Build Mbed TLS tests. +ENABLE_TESTING:BOOL= + +//No help, variable specified on the command line. +ESP_PLATFORM:UNINITIALIZED=1 + +//Generate the auto-generated files as needed +GEN_FILES:BOOL= + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Users/famil/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//IDF Build Target +IDF_TARGET:STRING=esp32c6 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//Install Mbed TLS headers. +INSTALL_MBEDTLS_HEADERS:BOOL=ON + +//Value Computed by CMake +JoystickControlServo_BINARY_DIR:STATIC=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build + +//Value Computed by CMake +JoystickControlServo_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +JoystickControlServo_SOURCE_DIR:STATIC=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo + +//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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:\Users\famil\.espressif\python_env\idf5.4_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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/esp/v5.4/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_riscv; + +//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_riscv;general;everest;general;p256m;general;idf::esp_security;general;idf::esp_mm; + +//Dependencies for the target +mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv;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_riscv;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_riscv; + + +######################## +# 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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo +//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=116 +//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/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Users/famil/.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/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/JoystickControlServo +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;C:\Users\famil\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Lib;C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Lib\site-packages;C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=531c861bd1d069996659150da9caaf69 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..20b10d9 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) + + diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..2412efa --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..d67e8e4 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..cfc3f03 Binary files /dev/null and b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..7891411 Binary files /dev/null and b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeSystem.cmake b/JoystickControlServo/build/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..da25346 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/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/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.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/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/a.out b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..5d6b01d Binary files /dev/null and b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..54c700a Binary files /dev/null and b/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/JoystickControlServo/build/CMakeFiles/CMakeConfigureLog.yaml b/JoystickControlServo/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..ddbc1aa --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,642 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe + Build flags: -march=rv32imac_zicsr_zifencei + Id flags: + + The output was: + 0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe + Build flags: -march=rv32imac_zicsr_zifencei + Id flags: + + The output was: + 0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + riscv32-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0 + Copyright (C) 2024 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-rwrcwr" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-rwrcwr" + cmakeVariables: + CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-rwrcwr' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_8837f + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_8837f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\ccvB6Imc.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: bd4b44cd937a52babfee906ad526682a + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj C:\\Users\\famil\\AppData\\Local\\Temp\\ccvB6Imc.s + GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -o cmTC_8837f && cd ." + Using built-in specs. + Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_8837f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_8837f.' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccr5zayc.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_8837f -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_8837f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_8837f.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-rwrcwr'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_8837f] + ignore line: [[1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_8837f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\ccvB6Imc.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: bd4b44cd937a52babfee906ad526682a] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj C:\\Users\\famil\\AppData\\Local\\Temp\\ccvB6Imc.s] + ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -o cmTC_8837f && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_8837f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_8837f.'] + link line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccr5zayc.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_8837f -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_8837f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccr5zayc.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [--sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_8837f] ==> ignore + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_8837f.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010094\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_8837f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_8837f.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-ynuqca" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-ynuqca" + cmakeVariables: + CMAKE_CXX_FLAGS: "-march=rv32imac_zicsr_zifencei " + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-ynuqca' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_efaaa + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_efaaa.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\cc3mHh1q.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\famil\\AppData\\Local\\Temp\\cc3mHh1q.s + GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_efaaa && cd ." + Using built-in specs. + Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_efaaa' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_efaaa.' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccn1cVMw.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_efaaa -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_efaaa' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_efaaa.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-ynuqca'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_efaaa] + ignore line: [[1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_efaaa.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\cc3mHh1q.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\famil\\AppData\\Local\\Temp\\cc3mHh1q.s] + ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_efaaa && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_efaaa' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_efaaa.'] + link line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccn1cVMw.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_efaaa -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_efaaa.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccn1cVMw.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [--sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_efaaa] ==> ignore + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_efaaa.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010094\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_efaaa' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_efaaa.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:136 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-7kzchk" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-7kzchk" + cmakeVariables: + CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-7kzchk' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_d78c5 + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD -march=rv32imac_zicsr_zifencei -o CMakeFiles/cmTC_d78c5.dir/src.c.obj -c C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-7kzchk/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_d78c5.dir/src.c.obj -o cmTC_d78c5 && cd ." + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: CMakeFiles/cmTC_d78c5.dir/src.c.obj: in function `main': + src.c:(.text+0x6e): warning: pthread_atfork is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x50): warning: pthread_cancel is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x34): warning: pthread_create is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x42): warning: pthread_detach is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x78): warning: pthread_exit is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x60): warning: pthread_join is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:219 (CHECK_C_COMPILER_FLAG)" + checks: + - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-jse1ur" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-jse1ur" + cmakeVariables: + CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-jse1ur' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_ab175 + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_ab175.dir/src.c.obj -c C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/CMakeScratch/TryCompile-jse1ur/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_ab175.dir/src.c.obj -o cmTC_ab175 && cd ." + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + + exitCode: 0 +... diff --git a/JoystickControlServo/build/CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj b/JoystickControlServo/build/CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj new file mode 100644 index 0000000..8475fc3 Binary files /dev/null and b/JoystickControlServo/build/CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/CMakeFiles/TargetDirectories.txt b/JoystickControlServo/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..86412cb --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,828 @@ +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/menuconfig.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/confserver.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/save-defconfig.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/gen_project_binary.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/app.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/erase_flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/merge-bin.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/monitor.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/encrypted-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/_project_elf_src.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/JoystickControlServo.elf.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/size.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/size-files.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/size-components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/uf2.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/uf2-app.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/list_install_components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/install.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/install/local.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/JoystickControlServo/build/CMakeFiles/bootloader-complete b/JoystickControlServo/build/CMakeFiles/bootloader-complete new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.json b/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..a06f16c --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" + } + ], + "target" : + { + "labels" : + [ + "bootloader" + ], + "name" : "bootloader" + } +} \ No newline at end of file diff --git a/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.txt b/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.txt new file mode 100644 index 0000000..5266e9c --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader-complete.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/JoystickControlServo/build/CMakeFiles/clean_additional.cmake b/JoystickControlServo/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..7349a30 --- /dev/null +++ b/JoystickControlServo/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 + "JoystickControlServo.bin" + "JoystickControlServo.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_esp32c6.c" + "x509_crt_bundle.S" + ) +endif() diff --git a/JoystickControlServo/build/CMakeFiles/cmake.check_cache b/JoystickControlServo/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/JoystickControlServo/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/JoystickControlServo/build/CMakeFiles/git-data/HEAD b/JoystickControlServo/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..12ec971 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +ref: refs/heads/Servo diff --git a/JoystickControlServo/build/CMakeFiles/git-data/grabRef.cmake b/JoystickControlServo/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..ec91690 --- /dev/null +++ b/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/.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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/JoystickControlServo/build/CMakeFiles/git-data/head-ref b/JoystickControlServo/build/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..667cea0 --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +268dbb097521f74021112f7eb3c209cd734176db diff --git a/JoystickControlServo/build/CMakeFiles/rules.ninja b/JoystickControlServo/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..b9e211c --- /dev/null +++ b/JoystickControlServo/build/CMakeFiles/rules.ninja @@ -0,0 +1,1838 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: JoystickControlServo +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__JoystickControlServo.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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__JoystickControlServo.2eelf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_pm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_pm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_mbedtls_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__everest_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__everest_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__p256m_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__p256m_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedcrypto_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedx509_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedx509_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedtls_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_app_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_app_update_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_app_update_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_partition_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_partition_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_efuse_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_mm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_mm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_hal_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_log_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_heap_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_heap_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_soc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_security_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_freertos_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_newlib_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_newlib_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_pthread_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_pthread_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_cxx_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_cxx_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_timer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_timer_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gptimer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_ringbuf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_uart_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_nvs_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_pcnt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_spi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_mcpwm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2s_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_sdmmc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_sdmmc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_rmt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_tsens_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2c_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_ledc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_parlio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_parlio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_driver_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_driver_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_console_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_console_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_adc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_adc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_cam_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_gdbstub_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_server_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_server_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ieee802154_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ieee802154_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_main_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\famil\.espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\famil\.espressif\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/JoystickControlServo/build/JoystickControlServo.bin b/JoystickControlServo/build/JoystickControlServo.bin new file mode 100644 index 0000000..80b74b3 Binary files /dev/null and b/JoystickControlServo/build/JoystickControlServo.bin differ diff --git a/JoystickControlServo/build/JoystickControlServo.elf b/JoystickControlServo/build/JoystickControlServo.elf new file mode 100644 index 0000000..e5e07ad Binary files /dev/null and b/JoystickControlServo/build/JoystickControlServo.elf differ diff --git a/JoystickControlServo/build/JoystickControlServo.map b/JoystickControlServo/build/JoystickControlServo.map new file mode 100644 index 0000000..f800bb4 --- /dev/null +++ b/JoystickControlServo/build/JoystickControlServo.map @@ -0,0 +1,28107 @@ +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/efuse/libefuse.a(esp_efuse_startup.c.obj) + (esp_efuse_startup_include_func) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.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_process) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_key_dis_read) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_KEY5) +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_system/libesp_system.a(esp_system.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_restart) +esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + (esp_system_include_startup_funcs) +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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_brownout_init) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) +esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (esp_reset_reason_set_hint) +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(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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) +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(panic.c.obj) (panic_restart) +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(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_hw_stack_guard_get_bounds) +esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + (tlsf_set_rom_patches) +esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + (esp_rom_include_multi_heap_patch) +esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_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(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_timestamp.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_timestamp) +esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_log_write) +esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) (esp_log_level_get_timeout) +esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_linked_list_set_level) +esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_cache_set_level) +esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(log_write.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_init.c.obj) (multi_heap_in_rom_init) +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/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) +esp-idf/esp_security/libesp_security.a(init.c.obj) + (esp_security_init_include_impl) +esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + esp-idf/esp_security/libesp_security.a(init.c.obj) (esp_crypto_dpa_protection_startup) +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_breakpoint) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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(cache_err_int.c.obj) (esp_intr_enable_source) +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_deregister) +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(regi2c_ctrl.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) (regi2c_ctrl_write_reg_mask) +esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (modem_clock_deselect_all_module_lp_clock_source) +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(pmu_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (pmu_init) +esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) (pmu_sleep_enable_hp_sleep_sysclk) +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(ocode_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (esp_ocode_calib_init) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + (rv_core_critical_regs_save) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (periph_rcc_acquire_enter) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) (esp_sleep_pd_config) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_console_usj_pad_backup_and_disable) +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(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (io_mux_enable_lp_io_clock) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (peripheral_domain_pd_allowed) +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) (mspi_timing_change_speed_mode_cache_safe) +esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) (pmu_hp_system_power_param_default) +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(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_cpu_retention) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (clock_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) (modem_domain_pd_allowed) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) (sleep_retention_entries_create) +esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (pau_regdma_set_entry_link_addr) +esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (regdma_link_init) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) (sleep_modem_state_phy_link_init) +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/log/liblog.a(log_lock.c.obj) (xQueueGenericSend) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (vTaskDelete) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (vPortEndScheduler) +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/esp_system/libesp_system.a(cpu_start.c.obj) (abort) +esp-idf/newlib/libnewlib.a(assert.c.obj) + (__assert_func) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (_lock_init_recursive) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (newlib_include_pthread_impl) +esp-idf/newlib/libnewlib.a(getentropy.c.obj) + (newlib_include_getentropy_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) + (newlib_include_init_funcs) +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/newlib/libnewlib.a(random.c.obj) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) (getrandom) +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/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + (__cxx_init_dummy) +esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + (esp_timer_init_include_func) +esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) (esp_timer_impl_init_system_time) +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_lock) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_timer_impl_get_time) +esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + (uart_vfs_include_dev_init) +esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (uart_set_word_length) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + (usb_serial_jtag_connection_monitor_include) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + (usb_serial_jtag_vfs_include_dev_init) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) (usb_serial_jtag_read_bytes) +esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + (include_esp_phy_override) +esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) (phy_ana_i2c_master_burst_rf_onoff) +esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (phy_get_lock) +esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_init_data) +esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + (esp_vfs_include_console_register) +esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (esp_vfs_register_fs) +esp-idf/vfs/libvfs.a(nullfs.c.obj) + (esp_vfs_include_nullfs_register) +esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (g_coex_adapter_funcs) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/main/libmain.a(Main.c.obj) + (app_main) +esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (riscv_decode_offset_from_jal_instruction) +esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (intr_handler_set) +esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (_interrupt_handler) +esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esprv_int_get_type) +esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (_vector_table) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (gpio_pullup_en) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_gpio_is_valid_gpio) +esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_pm_impl_get_cpu_freq) +esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) (esp_pm_lock_create) +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_random_esp32c6.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (bootloader_random_enable) +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_esp32c6.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +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/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(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) (esp_heap_adjust_alignment_to_hw) +esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) (esp_cache_get_alignment) +esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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) (esp_mspi_pin_init) +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/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_flash_init_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_api.c.obj) (esp_flash_app_disable_os_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(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/esp_hw_support/libesp_hw_support.a(sleep_modes.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(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (esp_vApplicationTickHook) +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(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(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (esp_backtrace_print) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (esp_err_to_name) +esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) (esp_rom_regi2c_read) +esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_hal_init) +esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (lp_timer_hal_set_alarm_target) +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.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) (cache_hal_disable) +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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_get_sclk) +esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) (modem_clock_hal_set_clock_domain_icg_bitmap) +esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) (pau_hal_set_regdma_entry_link_addr) +esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) +esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) (pmu_hal_hp_set_digital_power_up_wait_cycle) +esp-idf/hal/libhal.a(apm_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (apm_hal_apm_ctrl_filter_enable_all) +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/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_periph_signal) +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(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_num_map) +esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (esp_hmac_calculate) +esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (esp_crypto_hmac_lock_acquire) +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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (periph_rtc_dig_clk8m_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/newlib/libnewlib.a(random.c.obj) (esp_fill_random) +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_mac_get_default) +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) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) (temperature_sensor_power_acquire) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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_xtal32k_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (adc_apb_periph_claim) +esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_ticks_to_us) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) (rtos_int_enter) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (xQueueCreateWithCaps) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) (__atomic_fetch_and_8) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (esp_timer_create) +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_setfn) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) (xRingbufferCreate) +esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (nvs_erase_all) +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_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_get_by_id) +esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/main/libmain.a(Main.c.obj) (adc1_config_width) +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_aes_xts_init) +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_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) (esp_aes_intr_alloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (esp_aes_dma_start) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) (esp_crypto_shared_gdma_start_axi_ahb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) (mbedtls_free) +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) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_coex_adapter_register) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) (coex_core_pti_set) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) (coex_hw_timer_freq_set) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) (coex_rom_osi_funcs_init) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) (coex_schm_lock) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) (coex_dbg_output) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_find_first) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_write) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) +esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (esp_efuse_rtc_calib_get_ver) +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_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/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_get_metadata) +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_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) +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(adc_hal_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) (adc_hal_calibration_init) +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/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (hmac_hal_start) +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(temperature_sensor_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (temperature_sensor_attributes) +esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (spicommon_periph_claim) +esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (gdma_new_ahb_channel) +esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) (coexist_printf) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) (esp_sha_write_digest_state) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) +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(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_deinit) +esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_ahb_hal_init) +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/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_periph_signals) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (__ffssi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (__ffsdi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) (__clz_tab) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (__clzsi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (__ctzdi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (__udivdi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__muldf3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__subdf3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__fixdfsi) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__floatsidf) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (phy_param_track_tot) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_xpd_tsens) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) (phy_wakeup_init_) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) (pbus_clear_reg) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (freq_reg_init) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) (phy_dig_reg_backup_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) (rfpll_cap_correct_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (tsens_read_init_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (ram_set_chan_cal_interp) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (rc_cal_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (pwdet_reg_init_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (rxiq_cal_init) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (get_phy_version_str) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) (get_chan_target_power_new) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (rx_11b_opt) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (get_iq_value) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) (i2c_clk_sel) +C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) (txdc_cal_pwdet_init) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) (phy_printf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) (__utoa) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) (__sflush_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) (__sfp_lock_acquire) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (fputs) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) (_fseek_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) (__sfvwrite_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) (_fwalk_sglue) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) (printf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) (_putc_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (snprintf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) (sprintf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) (__sread) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log_write.c.obj) (vprintf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) (vsnprintf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) (__swbuf_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) (__swsetup_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) (_fseeko_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) (memchr) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strncpy) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) (_impure_ptr) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) (__errno) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (close) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (fstat) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) (gettimeofday) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (open) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (read) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (write) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) (memmove) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (memset) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + esp-idf/log/liblog.a(tag_log_level.c.obj) (strcmp) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) (_svfprintf_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) (_vfprintf_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) (__sprint_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) (__sflags) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) (__smakebuf_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) (__srefill_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) (_strerror_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) (_user_strerror) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (_localeconv_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (frexp) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (_dtoa_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) (_Balloc) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__ssprint_r) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) (__global_locale_ptr) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) (__ascii_mbtowc) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) (__ascii_wctomb) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) (_ctype_) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) (__adddf3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) (__divdf3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__eqdf2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__gtdf2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__ledf2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__unorddf2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) (__floatunsidf) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) (__trunctfdf2) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj + .data 0x00000000 0x0 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj + .bss 0x00000000 0x0 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj + .comment 0x00000000 0x30 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj + .note.GNU-stack + 0x00000000 0x0 CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj + .riscv.attributes + 0x00000000 0x5c CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.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) + .text.esp_app_get_description + 0x00000000 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.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 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xe2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.destroy_block.str1.4 + 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.destroy_block + 0x00000000 0x154 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0x4e 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) + .sbss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .sbss.s_efuse_lock + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.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 0xdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x52 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 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x34 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 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x102 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 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) + .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_block_is_empty + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x9e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.4 + 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0x124 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0x156 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.4 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.4 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0xc6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.0 + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.1 + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.2 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.3 + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.4 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.5 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x160b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x325 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xc8d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x1420 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x106c 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x350 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .riscv.attributes + 0x00000000 0x5c 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) + .sdata.ESP_EFUSE_SYS_DATA_PART2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DBIAS_VOL_GAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DSLP_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DSLP_LP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_LSLP_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_LSLP_HP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ACTIVE_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ACTIVE_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_EXT + 0x00000000 0xc 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) + .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_CRYPT_DPA_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SEC_DPA_LEVEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_JTAG_SEL_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SWAP_UART_SDIO_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DSLP_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DSLP_LP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_LSLP_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_LSLP_HP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_MAC_EXT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SWAP_UART_SDIO_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SYS_DATA_PART2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USER_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DBIAS_VOL_GAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DSLP_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DSLP_LP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.LSLP_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.LSLP_HP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ACTIVE_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ACTIVE_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.MAC_EXT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.CRYPT_DPA_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SEC_DPA_LEVEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.VDD_SPI_AS_GPIO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.JTAG_SEL_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SWAP_UART_SDIO_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_VDD_SPI_AS_GPIO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_USR_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DBIAS_VOL_GAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DSLP_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DSLP_LP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_LSLP_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_LSLP_HP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ACTIVE_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ACTIVE_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_MAC_EXT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SEC_DPA_LEVEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_JTAG_SEL_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SWAP_UART_SDIO_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_CRYPT_DPA_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.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_set_timing + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.4 + 0x00000000 0x1d8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x3c0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.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) + .text.esp_unregister_shutdown_handler + 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.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 0xe 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 0x5c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x00000000 0x22 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) + .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_free_heap_size + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_free_internal_heap_size + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_minimum_free_heap_size + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x00000000 0x5 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_system_chip.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 0x40 esp-idf/esp_system/libesp_system.a(brownout.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 0x14 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text.esp_reset_reason + 0x00000000 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.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) + .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(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) + .iram1.1 0x00000000 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.2 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.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 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) + .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.panic_get_address + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_set_address + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .text.esp_hw_stack_guard_monitor_start + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .text.esp_hw_stack_guard_monitor_stop + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .text.esp_hw_stack_guard_set_bounds + 0x00000000 0xa esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .rodata.default_walker.str1.4 + 0x00000000 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .text.default_walker + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .text.tlsf_poison_check_pfunc_set + 0x00000000 0xa esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .rodata.tlsf_walk_pool.str1.4 + 0x00000000 0x4a esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .text.tlsf_walk_pool + 0x00000000 0x86 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .rodata.__func__.0 + 0x00000000 0xb esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .rodata.multi_heap_walk.str1.4 + 0x00000000 0x46 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .text.multi_heap_walk + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .rodata.__func__.0 + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xb6 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.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 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x10 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 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_program.str1.4 + 0x00000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x54 esp-idf/hal/libhal.a(efuse_hal.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 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x46 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x00000000 0x42 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) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_set_vprintf + 0x00000000 0x32 esp-idf/log/liblog.a(log_write.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .text.esp_log_set_default_level + 0x00000000 0xa esp-idf/log/liblog.a(log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .rodata.log_level_set.str1.4 + 0x00000000 0x2 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.log_level_set + 0x00000000 0x72 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_set + 0x00000000 0x12 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_get + 0x00000000 0x14 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.set_log_level + 0x00000000 0x42 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.add_to_list + 0x00000000 0x60 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_set_level + 0x00000000 0x32 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_clean + 0x00000000 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_set_level + 0x00000000 0xac esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_clean + 0x00000000 0x1a esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__.1 + 0x00000000 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.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_walker + 0x00000000 0x36 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x14 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.4 0x00000000 0x76 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5 0x00000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x42 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_free_size + 0x00000000 0x46 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x46 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_monitor_local_minimum_free_size_start.str1.4 + 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_start + 0x00000000 0x10a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_stop + 0x00000000 0xb0 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 0xb8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x74 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x00000000 0x56 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x00000000 0x16 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 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10 0x00000000 0xb4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.12 0x00000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x48 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_walk.str1.4 + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk + 0x00000000 0x98 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk_all + 0x00000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.0 + 0x00000000 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.2 + 0x00000000 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.3 + 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.4 + 0x00000000 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.7 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.8 + 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.9 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.min_free_bytes_monitoring + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.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 0x4c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0x19a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x00000000 0x84 esp-idf/heap/libheap.a(heap_caps_init.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) + .text.multi_heap_reset_minimum_free_bytes + 0x00000000 0x2e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_restore_minimum_free_bytes + 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.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) + .srodata.soc_memory_type_count + 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .text.esp_crypto_dpa_protection_enable + 0x00000000 0x12 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .text.esp_crypto_dpa_protection_disable + 0x00000000 0xc esp-idf/esp_security/libesp_security.a(esp_dpa_protection.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_stall + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_unstall + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.esp_cpu_reset.str1.4 + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0xda esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_compare_and_set + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__.0 + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.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) + .text.esp_clk_rtc_time + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0x12 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(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 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_cpu + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.intr_free_for_current_cpu.str1.4 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.intr_free_for_current_cpu + 0x00000000 0x104 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_free + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.4 + 0x00000000 0x12f esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x00000000 0x29a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__.1 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__.3 + 0x00000000 0x1a 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(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) + .rodata.rtc_isr_register.str1.4 + 0x00000000 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_register + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .rodata.rtc_isr_deregister.str1.4 + 0x00000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .sdata.rtc_spinlock + 0x00000000 0x8 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(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) + .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 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.8 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.9 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.7 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .sbss.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/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .text.modem_clock_domain_clk_gate_enable + 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.16 0x00000000 0x168 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .text.modem_clock_deselect_lp_clock_source + 0x00000000 0x1ae esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .rodata.__func__.0 + 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .rodata.__func__.7 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.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 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_and_pll_lock_release + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0xe 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(pmu_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_power_init + 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_digital_init + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_analog_init + 0x00000000 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_param_init + 0x00000000 0x144 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.get_lslp_dbg + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.get_lslp_hp_dbias + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.get_dslp_dbg + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.get_dslp_lp_dbias + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_calculate_hw_wait_time + 0x00000000 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_param_config_default + 0x00000000 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_config_default + 0x00000000 0x3aa esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_pll_already_enabled + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.pmu_sleep_init.str1.4 + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_init + 0x00000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_finish + 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_start + 0x00000000 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .text.pmu_sleep_get_wakup_retention_cost + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.0 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.1 + 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.5 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.7 + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.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_time_slowclk_to_us + 0x00000000 0x1a 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(ocode_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.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_ll_get_clk_en_mask + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_get_rst_en_mask + 0x00000000 0x1a2 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_get_clk_en_reg + 0x00000000 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_get_rst_en_reg + 0x00000000 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_enable_clk_clear_rst + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_disable_clk_set_rst + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_reset + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.periph_module_enable.str1.4 + 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_enable + 0x00000000 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x00000000 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.3 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.4 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.wifi_module_enable + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.wifi_module_disable + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__.0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__.1 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__.2 + 0x00000000 0x15 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(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_function_select + 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.lp_aon_ll_ext1_set_wakeup_pins + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.entry.text + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.5 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_do_deep_sleep_phy_callback + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0x192 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.12 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x00000000 0xe6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.gpio_deep_sleep_wakeup_prepare.str1.4 + 0x00000000 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.gpio_deep_sleep_wakeup_prepare + 0x00000000 0x15e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.timer_wakeup_prepare + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.6 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.7 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.2 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.3 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0x5b4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.18 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.4 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0xce esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_phy_hook + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x3c2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.4 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x146 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.4 + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_with_level_mask + 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_deep_sleep_enable_gpio_wakeup.str1.4 + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_enable_gpio_wakeup + 0x00000000 0x1b2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_gpio_wakeup_status + 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_config.str1.4 + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_sub_mode_config + 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_sub_mode_force_disable + 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_dump_config.str1.4 + 0x00000000 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_sub_mode_dump_config + 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.19 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__.5 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__.3 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__.2 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__.1 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .sbss.s_suspended_uarts_bmap + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .sbss.s_cache_suspend_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_fast.1 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_fast.0 + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .sbss.s_light_sleep_wakeup + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .sbss.s_lightsleep_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_phy_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata 0x00000000 0x1c 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_console.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .text.sleep_console_usj_pad_backup_and_disable + 0x00000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .text.sleep_console_usj_pad_restore + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .sbss.s_usj_state + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_info 0x00000000 0x42a4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_abbrev 0x00000000 0x282 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_loc 0x00000000 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_line 0x00000000 0x47b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_str 0x00000000 0x2c91 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_frame 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.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 0x2 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 0xe1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x390 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .rodata.gpio_ll_iomux_set_clk_src.str1.4 + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text.gpio_ll_iomux_set_clk_src + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text.io_mux_set_clock_source + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .rodata.__func__.0 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .sbss.s_io_mux_clk_src + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .text.peripheral_domain_pd_allowed + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_info 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_abbrev 0x00000000 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_line 0x00000000 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_str 0x00000000 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.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 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_flash_tuning + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_low_speed_mode + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_high_speed_mode + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_change_speed_mode_cache_safe + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_flash_timing_is_tuned + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_get_flash_timing_param + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_set_pin_drive_strength + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss.s_tuning_cfg_drv + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_info 0x00000000 0x4a9 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x00000000 0x1f6 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_loc 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_line 0x00000000 0x54d esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_str 0x00000000 0x666 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_frame 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .riscv.attributes + 0x00000000 0x5c 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(pmu_param.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.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_init + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x12 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(sleep_cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.str1.4 + 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.3 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.1 0x00000000 0x244 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.2 0x00000000 0x23a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.4 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.5 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.cpu_domain_dev_sleep_frame_alloc_and_init + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_deinit_impl + 0x00000000 0xce esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.6 0x00000000 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_deinit + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_init_impl + 0x00000000 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_init + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.cpu_domain_pd_allowed + 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.sleep_cpu_configure.str1.4 + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.sleep_cpu_configure + 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.regions.1 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.regions.2 + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.regions.3 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.regions.4 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__func__.5 + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__func__.6 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__func__.7 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__func__.8 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .dram1.0 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_info 0x00000000 0x1eed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_abbrev 0x00000000 0x3d1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_loc 0x00000000 0xf9e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_ranges 0x00000000 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_line 0x00000000 0x1cf9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_str 0x00000000 0xfff esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_frame 0x00000000 0x1d0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .riscv.attributes + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .text.clock_domain_pd_allowed + 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.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.esp_pm_light_sleep_default_params_config + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_wifi_modem_state_init + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_wifi_modem_state_deinit + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_wifi_modem_state_enabled + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_wifi_modem_link_done + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.1 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.2 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .sbss.s_light_sleep_default_params_config_cb + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .sbss.s_periph_inform_out_light_sleep_overhead_cb + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .sbss.s_sleep_modem + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x00000000 0x744 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x35f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x36d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x00000000 0x89b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0xbae 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .riscv.attributes + 0x00000000 0x5c 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_retention.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.references_exist + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.empty_create + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_entries_check_and_distroy_final_default.str1.4 + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_check_and_distroy_final_default + 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_destroy + 0x00000000 0xba esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_dump_entries.str1.4 + 0x00000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_dump_entries + 0x00000000 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_find_link_by_id + 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_get + 0x00000000 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_passive_module_allocate.str1.4 + 0x00000000 0xe3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_passive_module_allocate + 0x00000000 0x1a4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_passive_module_free + 0x00000000 0x19e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_is_module_inited + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_is_module_created + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_dump_modules.str1.4 + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_dump_modules + 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .iram1.3 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .iram1.4 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .iram1.5 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .iram1.6 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_module_deinit + 0x00000000 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_module_allocate + 0x00000000 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_module_free + 0x00000000 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_power_lock_acquire + 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_power_lock_release.str1.4 + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_power_lock_release + 0x00000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .iram1.7 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.0 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.1 + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.2 + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.3 + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.4 + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .sbss.acquire_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .text.pau_regdma_set_modem_link_addr + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .iram1.1 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .iram1.2 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .iram1.3 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .iram1.4 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .iram1.5 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_link_info.str1.4 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_link_info + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_branch_write_wait_wrapper.str1.4 + 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_branch_write_wait_wrapper + 0x00000000 0xce esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_write_wait_wrapper.str1.4 + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_write_wait_wrapper + 0x00000000 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_link_data.str1.4 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_link_data + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_branch_addr_map_wrapper.str1.4 + 0x00000000 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_branch_addr_map_wrapper + 0x00000000 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_branch_continuous_wrapper.str1.4 + 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_branch_continuous_wrapper + 0x00000000 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_addr_map_wrapper.str1.4 + 0x00000000 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_addr_map_wrapper + 0x00000000 0xec esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.print_info_continuous_wrapper.str1.4 + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.print_info_continuous_wrapper + 0x00000000 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_recursive + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_find_link_by_pos + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_find_link_by_id + 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_set_write_wait_content + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_dump.str1.4 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_dump + 0x00000000 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.prinf_fn.1 + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.2 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.3 + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.12 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.13 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.str1.4 + 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .srodata.s_boolean_str + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.s_link_mode_str + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .text.sleep_modem_state_phy_link_init + 0x00000000 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .text.sleep_modem_state_phy_link_deinit + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .data.wifi_modem_config.0 + 0x00000000 0x618 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_info 0x00000000 0x4dc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_abbrev 0x00000000 0x21a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_loc 0x00000000 0x125 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_line 0x00000000 0x3f2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_str 0x00000000 0x4fc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .debug_frame 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.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) + .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 0x6e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x00000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericSendFromISR + 0x00000000 0x19c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueReceive + 0x00000000 0x1d2 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x00000000 0x1cc 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 0xd0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaiting + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x00000000 0x74 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.0 + 0x00000000 0x19 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__.5 + 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__.10 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.12 + 0x00000000 0x19 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) + .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 0x7e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxGetTaskListByIndex + 0x00000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x00000000 0xc6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGet + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPrioritySet.str1.4 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPrioritySet + 0x00000000 0x166 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 0xe2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x00000000 0x10e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x00000000 0x22 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 0x8e 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 0xf6 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 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x6e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0x106 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x00000000 0x13e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPlaceOnUnorderedEventList.str1.4 + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0xae esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x00000000 0x7e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskRemoveFromUnorderedEventList + 0x00000000 0x122 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x00000000 0x5c 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 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetThreadLocalStoragePointer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x00000000 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotify + 0x00000000 0x20e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x268 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 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskPriorityRaise.str1.4 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRaise + 0x00000000 0x12c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRestore + 0x00000000 0x110 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetNext + 0x00000000 0x9c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.7 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.9 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.10 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.11 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.15 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.17 + 0x00000000 0x15 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 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.21 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.25 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.26 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.27 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.28 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.32 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.33 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.34 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.35 + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.36 + 0x00000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.37 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.39 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.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 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.1 0x00000000 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortYieldOtherCore + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x00000000 0x6 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__.1 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(port.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 0x18 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortCheckValidListMem + 0x00000000 0x3a 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.vApplicationGetTimerTaskMemory + 0x00000000 0x98 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__.0 + 0x00000000 0x1f 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) + .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 0x10 esp-idf/newlib/libnewlib.a(assert.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.realloc 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x42 esp-idf/newlib/libnewlib.a(heap.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.1 0x00000000 0x18 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_setcancelstate + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x00000000 0xa esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x46 esp-idf/newlib/libnewlib.a(getentropy.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 0x94 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) + .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 0x46 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x00000000 0x50 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fstat_r_console + 0x00000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fsync_console + 0x00000000 0x2e esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x00000000 0x1a esp-idf/newlib/libnewlib.a(syscalls.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 0x15a esp-idf/newlib/libnewlib.a(time.c.obj) + .text.usleep 0x00000000 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.sleep 0x00000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x00000000 0x5e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x00000000 0xb0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x00000000 0x38 esp-idf/newlib/libnewlib.a(time.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 0x12 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .text.getrandom + 0x00000000 0x2c esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_info 0x00000000 0x18a esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_abbrev 0x00000000 0x10e esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_loc 0x00000000 0xc9 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_line 0x00000000 0x2dc esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_str 0x00000000 0x2ac esp-idf/newlib/libnewlib.a(random.c.obj) + .comment 0x00000000 0x30 esp-idf/newlib/libnewlib.a(random.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_frame 0x00000000 0x34 esp-idf/newlib/libnewlib.a(random.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/newlib/libnewlib.a(random.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 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x00000000 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x00000000 0x1c 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 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.lazy_init_pthread_cfg_key + 0x00000000 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_cfg_key_destructor + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x00000000 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create_freertos_task_with_caps + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock_internal + 0x00000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.esp_pthread_set_cfg.str1.4 + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x00000000 0xe6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0xa2 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x00000000 0xb4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x00000000 0x28a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x00000000 0x13c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x90 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x00000000 0x57 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0xcc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x00000000 0x16 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 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x00000000 0x1f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x00000000 0x64 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x00000000 0x8a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x00000000 0x48 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 0x9c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock + 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0x118 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x2e 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 0x96 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x00000000 0x20 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.__FUNCTION__.6 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__.7 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_pthread_cfg_key + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_threads_list + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sdata.pthread_lazy_init_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_threads_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.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 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_destroy + 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getpshared + 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setpshared + 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getclock + 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setclock + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x00000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x1a4 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 0x6e 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) + .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.find_value + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.find_key + 0x00000000 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x00000000 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_cleanup_thread_specific_data_callback + 0x00000000 0x6c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_key_delete + 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_getspecific + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_setspecific + 0x00000000 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__.0 + 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.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 0x8e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x00000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x00000000 0x6a 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 0xa4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__.0 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.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 0x28 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0x124 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x00000000 0x42 esp-idf/pthread/libpthread.a(pthread_semaphore.c.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 0x36 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 0xf6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x00000000 0x62 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 0xe6 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 0xd8 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 0xfe esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss.__dso_handle + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL31s_static_init_max_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL27s_static_init_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL22s_static_init_wait_sem + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL19s_static_init_mutex + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text.__cxx_eh_arena_size_get + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.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 0x6 esp-idf/esp_timer/libesp_timer.a(system_time.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 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x00000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .sdata.s_time_update_lock + 0x00000000 0x8 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_systimer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.0 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.4 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x7e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x76 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_rx_char_via_driver + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tx_char_via_driver + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_port_set_rx_line_endings + 0x00000000 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_port_set_tx_line_endings + 0x00000000 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_set_rx_line_endings + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_set_tx_line_endings + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_use_nonblocking + 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_use_driver + 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x00000000 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_find_pattern_from_last + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_ll_enable_bus_clock + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_ll_reset_register + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x00000000 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x00000000 0x70 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_link_free + 0x00000000 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.lp_uart_ll_set_source_clk.str1.4 + 0x00000000 0x3a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.lp_uart_ll_set_source_clk + 0x00000000 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x00000000 0x108 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_module_enable + 0x00000000 0x11c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_module_disable + 0x00000000 0x10a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_tx_write_fifo + 0x00000000 0xb4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_check_buf_full + 0x00000000 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x00000000 0x89a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_free_driver_obj + 0x00000000 0x84 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_alloc_driver_obj + 0x00000000 0x114 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_sclk_freq + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_line_inverse + 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x00000000 0x5f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x00000000 0x11e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x00000000 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x00000000 0x112 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_clear_intr_status + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x00000000 0x94 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x00000000 0x94 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x00000000 0xa8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x00000000 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x00000000 0xf6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x00000000 0x2d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x00000000 0x15c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_rx_intr + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x00000000 0xd8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_tx_all + 0x00000000 0x208 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x00000000 0x9e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_pin + 0x00000000 0x46c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rts + 0x00000000 0xea esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_dtr + 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x00000000 0xc0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_param_config + 0x00000000 0x4e6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_intr_config + 0x00000000 0x156 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x00000000 0x21 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_tx_chars + 0x00000000 0x120 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_write_bytes + 0x00000000 0xd8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x00000000 0x71 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x00000000 0x156 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_read_bytes + 0x00000000 0x1cc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_tx_buffer_free_size.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_tx_buffer_free_size + 0x00000000 0xdc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_driver_delete + 0x00000000 0x10e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x00000000 0x1c8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_driver_install + 0x00000000 0x3aa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x00000000 0x81 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_mode + 0x00000000 0x1be esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x00000000 0x128 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x00000000 0x39 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x00000000 0x128 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x00000000 0x33 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x00000000 0xc8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x00000000 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_collision_flag + 0x00000000 0x120 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x00000000 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x00000000 0xc8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x00000000 0x9e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x00000000 0x132 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_loop_back + 0x00000000 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.50 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__func__.49 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.48 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.47 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.46 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.45 + 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.44 + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.43 + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.42 + 0x00000000 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.41 + 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.40 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .sbss.pat_flg.39 + 0x00000000 0x1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.38 + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.36 + 0x00000000 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.33 + 0x00000000 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.32 + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.31 + 0x00000000 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.30 + 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.27 + 0x00000000 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__func__.26 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.25 + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.24 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.23 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.22 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.20 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.19 + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.18 + 0x00000000 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.17 + 0x00000000 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.16 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.15 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.14 + 0x00000000 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.13 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.12 + 0x00000000 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.11 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.10 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.9 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.8 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text.usb_serial_jtag_is_connected + 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_wait_tx_done_via_driver + 0x00000000 0x1a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_rx_char_via_driver + 0x00000000 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_tx_char_via_driver + 0x00000000 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_set_tx_line_endings + 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_set_rx_line_endings + 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.usb_serial_jtag_vfs_register.str1.4 + 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_register + 0x00000000 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_use_nonblocking + 0x00000000 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_use_driver + 0x00000000 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_isr_handler_default + 0x00000000 0x1e0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_read_bytes + 0x00000000 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_write_bytes.str1.4 + 0x00000000 0xac esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_write_bytes + 0x00000000 0x148 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_wait_tx_done + 0x00000000 0x9a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_uninstall.str1.4 + 0x00000000 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_uninstall + 0x00000000 0xf2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_install.str1.4 + 0x00000000 0x172 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_install + 0x00000000 0x30a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x1f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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) + .text.set_xpd_sar + 0x00000000 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0 0x00000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1 0x00000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_pwdet_power + 0x00000000 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.2 0x00000000 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_get_tsens_value + 0x00000000 0x14 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .sbss.s_wifi_tsens_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .sbss.s_wifi_pwdet_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .sbss.s_wifi_adc_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.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_ana_i2c_master_burst_config + 0x00000000 0x5a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_ant_config_check.str1.4 + 0x00000000 0x84 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_config_check + 0x00000000 0x9a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_set_gpio_output + 0x00000000 0x42 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_enabled_modem_contains + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_internal + 0x00000000 0x78 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_timer_callback + 0x00000000 0x36 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll + 0x00000000 0xa4 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 0xa0 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 0x76 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_set_modem_flag + 0x00000000 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_clr_modem_flag + 0x00000000 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_get_modem_flag + 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .iram1.1 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_clr_update_flag + 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.esp_phy_set_ant_gpio.str1.4 + 0x00000000 0x52 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_set_ant_gpio + 0x00000000 0x11c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_get_ant_gpio + 0x00000000 0x64 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_update + 0x00000000 0x98 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_set_ant + 0x00000000 0x56 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.esp_phy_get_ant.str1.4 + 0x00000000 0x1a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_get_ant + 0x00000000 0x4e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ana_i2c_master_burst_bbpll_config + 0x00000000 0x2e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ana_i2c_master_burst_rf_onoff + 0x00000000 0x34 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) + .dram1.0 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.s_phy_ant_config + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .sbss.s_phy_ant_gpio_config + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .sbss.s_bt_154_prev_timestamp + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .sbss.s_wifi_prev_timestamp + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .sbss.phy_track_pll_timer + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .sbss.s_phy_modem_flag + 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_info 0x00000000 0x1157 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_abbrev 0x00000000 0x3b0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_loc 0x00000000 0x54b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_aranges + 0x00000000 0xc0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_ranges 0x00000000 0x140 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_line 0x00000000 0x113b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_str 0x00000000 0xc7d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_frame 0x00000000 0x284 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_phy/libesp_phy.a(phy_common.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) + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x00000000 0x126 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.load_cal_data_from_nvs_handle + 0x00000000 0x192 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x00000000 0xdf esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.store_cal_data_to_nvs_handle + 0x00000000 0x17c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.1 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.2 0x00000000 0x26 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.3 0x00000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.4 0x00000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_disable + 0x00000000 0x66 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.5 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_wifi_bt_power_domain_off + 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_modem_init + 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_modem_deinit + 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_get_init_data + 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x00000000 0x60 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_load_cal_data_from_nvs + 0x00000000 0x84 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_store_cal_data_to_nvs + 0x00000000 0x48 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x00000000 0xb3 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x00000000 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x00000000 0x195 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_load_cal_and_init + 0x00000000 0x262 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_enable + 0x00000000 0x9e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_update_country_info + 0x00000000 0x4 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__.5 + 0x00000000 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__.4 + 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__.3 + 0x00000000 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__.1 + 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__.0 + 0x00000000 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .sbss.s_is_phy_calibrated + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .sbss.s_phy_access_lock + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x00000000 0x18d1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x00000000 0x395 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x00000000 0x4e0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x00000000 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x00000000 0x120 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x00000000 0x15bf esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_str 0x00000000 0x19d5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x00000000 0x248 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .rodata 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .rodata.phy_init_data + 0x00000000 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_info 0x00000000 0x142 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_abbrev 0x00000000 0xa6 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_line 0x00000000 0x214 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_str 0x00000000 0x278 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .text 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .data 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.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_safe_fd_isset + 0x00000000 0x34 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x00000000 0x140 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_free_entry + 0x00000000 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_minify_vfs + 0x00000000 0x160 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_make_fs_ops + 0x00000000 0x11c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_common + 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register + 0x00000000 0x36 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x00000000 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_range + 0x00000000 0x162 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fs_with_id + 0x00000000 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x00000000 0x2c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x00000000 0xbc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x00000000 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x00000000 0xe0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x00000000 0xbe esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_dump_fds.str1.4 + 0x00000000 0x9c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_dump_fds + 0x00000000 0x108 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_dump_registered_paths.str1.4 + 0x00000000 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_dump_registered_paths + 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_set_readonly_flag + 0x00000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.call_end_selects + 0x00000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x00000000 0x9a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x00000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x00000000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x00000000 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x00000000 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x00000000 0x98 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x00000000 0x4d2 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x00000000 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x00000000 0x80 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x00000000 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__.0 + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.esp_vfs_null_get_vfs + 0x00000000 0xa esp-idf/vfs/libvfs.a(nullfs.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) + .text.esp_coex_common_spin_lock_create_wrapper + 0x00000000 0x60 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.1 0x00000000 0x28 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.2 0x00000000 0x26 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_common_clk_slowclk_cal_get_wrapper + 0x00000000 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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.convert_key_type + 0x00000000 0x4 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.is_hmac_key_burnt_in_efuse + 0x00000000 0x26 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.compute_nvs_keys_with_hmac.str1.4 + 0x00000000 0x4e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.compute_nvs_keys_with_hmac + 0x00000000 0x190 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.read_security_cfg_hmac.str1.4 + 0x00000000 0xaa esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.read_security_cfg_hmac + 0x00000000 0xc8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.generate_keys_hmac.str1.4 + 0x00000000 0xec esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.generate_keys_hmac + 0x00000000 0x19e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_register_hmac + 0x00000000 0xc0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x00000000 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata 0x00000000 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(Main.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(Main.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(Main.c.obj) + .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text.intr_handler_get_arg + 0x00000000 0x14 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.str1.4 + 0x00000000 0xfd esp-idf/riscv/libriscv.a(interrupt.c.obj) + .data.riscv_excp_names + 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .rodata.intr_matrix_route.str1.4 + 0x00000000 0x70 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text.intr_matrix_route + 0x00000000 0x3a esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text.esprv_get_interrupt_unmask + 0x00000000 0x8 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text.esprv_int_get_type + 0x00000000 0x16 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text.esprv_int_get_priority + 0x00000000 0x10 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text.esprv_int_is_vectored + 0x00000000 0x4 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .rodata.__func__.0 + 0x00000000 0x18 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_info 0x00000000 0x32f esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_abbrev 0x00000000 0x1ae esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_loc 0x00000000 0x1df esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_ranges 0x00000000 0x48 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_line 0x00000000 0x418 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_str 0x00000000 0x386 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .comment 0x00000000 0x30 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_io_config + 0x00000000 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_iomux_out + 0x00000000 0x5a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0 0x00000000 0xc6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_level + 0x00000000 0x8c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0x166 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_direction + 0x00000000 0xcc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_reset_pin + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x00000000 0x49 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x00000000 0x12a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x00000000 0xfe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x00000000 0x62 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register + 0x00000000 0xc6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x00000000 0x23 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x00000000 0xf0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x00000000 0x12c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0xda esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x00000000 0xfc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x00000000 0xe8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x00000000 0x2f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_en + 0x00000000 0xce esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_dis + 0x00000000 0xd2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.2 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.3 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_in + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_out + 0x00000000 0x22 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_deep_sleep_wakeup_enable.str1.4 + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_wakeup_enable + 0x00000000 0x10c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_wakeup_disable + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_dump_io_configuration.str1.4 + 0x00000000 0x1d4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_dump_io_configuration + 0x00000000 0x2e6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_func_sel + 0x00000000 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.14 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.15 + 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.16 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.17 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.18 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.19 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.20 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.21 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.22 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.23 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__.24 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.26 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.27 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.28 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_set_level + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x86 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x00000000 0x5a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0x12e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0x110 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x00000000 0x86 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x00000000 0x86 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x00000000 0x86 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x00000000 0x86 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x84 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x88 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x32 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x32 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x78 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.2 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.3 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.4 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.5 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.6 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.7 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.8 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.9 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.10 + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.11 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.12 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.13 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.14 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.15 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__.17 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.0 0x00000000 0x20 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.2 0x00000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.3 0x00000000 0x128 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.4 0x00000000 0x2e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_mode + 0x00000000 0x2a esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_configure + 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_get_configuration + 0x00000000 0x3e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.1 0x00000000 0xd6 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_cpu_freq + 0x00000000 0x3e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.esp_pm_impl_init.str1.4 + 0x00000000 0xf9 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_init + 0x00000000 0x24a esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_idle_hook + 0x00000000 0x48 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.5 0x00000000 0x2a esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_waiti + 0x00000000 0x12 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.__func__.0 + 0x00000000 0x11 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_config_changed + 0x00000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_cpu_freq_by_mode + 0x00000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_rtos_lock_handle + 0x00000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_core_idle + 0x00000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_mode_mask + 0x00000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_mode_lock_counts + 0x00000000 0x10 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_is_switching + 0x00000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sdata.s_mode 0x00000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_info 0x00000000 0x581a esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_abbrev 0x00000000 0x59f esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_loc 0x00000000 0x6bc esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_ranges 0x00000000 0x118 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_line 0x00000000 0x1330 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_str 0x00000000 0x3378 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_frame 0x00000000 0x1b4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_delete + 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.0 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.1 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x00000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_info 0x00000000 0xc87 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_abbrev 0x00000000 0x20a esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_loc 0x00000000 0xc3 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_line 0x00000000 0x52d esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_str 0x00000000 0x858 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_frame 0x00000000 0x60 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_pm/libesp_pm.a(pm_locks.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_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .text.bootloader_random_enable + 0x00000000 0x17e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .text.bootloader_random_disable + 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_info 0x00000000 0x42e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_abbrev 0x00000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_line 0x00000000 0x416 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_str 0x00000000 0x2f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_frame 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.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 0x6a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x00000000 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x4a 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 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x00000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x4a 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) + .sbss.map 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_config_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.bootloader_spi_flash_resume + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .rodata.print_flash_info.str1.4 + 0x00000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.print_flash_info + 0x00000000 0x1ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.update_flash_config + 0x00000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .iram1.0 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .iram1.1 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .iram1.2 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .iram1.3 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x00000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0x140 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x3c7 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x3a6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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 0x48 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x112 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x14c 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 0x1d0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0x264 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.4 + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0xa2 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 0x19 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 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.9 0x00000000 0x18 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) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_aligned_malloc_internal + 0x00000000 0xf4 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.esp_cache_msync.str1.4 + 0x00000000 0x230 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_msync + 0x00000000 0x2b6 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_aligned_malloc + 0x00000000 0x12 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_aligned_malloc_prefer + 0x00000000 0x96 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_aligned_calloc + 0x00000000 0xda esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .text.esp_cache_aligned_calloc_prefer + 0x00000000 0x10a esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__FUNCTION__.2 + 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__FUNCTION__.3 + 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__FUNCTION__.4 + 0x00000000 0x22 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__func__.5 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .rodata.__FUNCTION__.6 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache.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) + .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.2 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.3 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.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 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x00000000 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x15c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x28 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 0x54 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) + .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.2 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.3 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.6 0x00000000 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .sbss.s_flash_guard_ops + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.1 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.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 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0xb0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8 0x00000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.16 0x00000000 0x246 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19 0x00000000 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x00000000 0xe8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.21 0x00000000 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.22 0x00000000 0x1de esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.25 0x00000000 0x92 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 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28 0x00000000 0x28e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x00000000 0x7c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0xbc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__.0 + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__.1 + 0x00000000 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.32 0x00000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.31 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.30 0x00000000 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.29 0x00000000 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.23 0x00000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.bus_using_iomux + 0x00000000 0xc8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.cs_using_iomux + 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x00000000 0x87 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x00000000 0x120 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x142 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x196 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) + .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 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5 0x00000000 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x00000000 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x1c 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) + .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.4 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.6 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .dram1.0 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_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.spi_flash_chip_generic_read_unique_id_none + 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_8b_rdsr + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_status_8b_wrsr + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_status_8b_wrsr2 + 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.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_read + 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.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 0x26 esp-idf/esp_system/libesp_system.a(esp_err.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 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.6 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.7 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.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 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x00000000 0x66 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x00000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x66 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x00000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.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(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 0x186 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x00000000 0xa6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x00000000 0x2b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x00000000 0x10c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x00000000 0x68 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 0x9c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x00000000 0x12c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x00000000 0xe8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x00000000 0x96 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x00000000 0x8c 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) + .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 0x5e 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 0xb2 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x00000000 0x36 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(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_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 0x8a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .iram1.1 0x00000000 0x4c esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .text.systimer_hal_deinit + 0x00000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.1 0x00000000 0x42 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.3 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.4 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_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_unmap_all + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x56 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__.9 + 0x00000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.s_cache_hal_init_ctx + 0x00000000 0x76 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_init + 0x00000000 0x54 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_disable + 0x00000000 0x56 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_enable + 0x00000000 0x5e esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_freeze + 0x00000000 0x3c esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_unfreeze + 0x00000000 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.__func__.1 + 0x00000000 0x13 esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.__func__.2 + 0x00000000 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.__func__.5 + 0x00000000 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.__func__.6 + 0x00000000 0x12 esp-idf/hal/libhal.a(cache_hal.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) + .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 0x6c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x00000000 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xba esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0x8a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x2e esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x16 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x00000000 0x2c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x00000000 0x32 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x00000000 0xe esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x00000000 0x180 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xa esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x00000000 0xc8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xdc esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x00000000 0x3e esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x00000000 0x68 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x1e 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) + .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) + .text.rtcio_hal_set_direction + 0x00000000 0x1b8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0xb2 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x58 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x179d esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x27e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x743 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0xc8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0x894 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xc83 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0x54 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) + .iram1.0 0x00000000 0x38 esp-idf/hal/libhal.a(pau_hal.c.obj) + .iram1.1 0x00000000 0x20 esp-idf/hal/libhal.a(pau_hal.c.obj) + .iram1.2 0x00000000 0x36 esp-idf/hal/libhal.a(pau_hal.c.obj) + .iram1.3 0x00000000 0x1e esp-idf/hal/libhal.a(pau_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .text.pmu_hal_hp_set_digital_power_up_wait_cycle + 0x00000000 0x32 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .text.pmu_hal_hp_get_digital_power_up_wait_cycle + 0x00000000 0x16 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .text.pmu_hal_lp_set_digital_power_up_wait_cycle + 0x00000000 0x32 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .text.pmu_hal_lp_get_digital_power_up_wait_cycle + 0x00000000 0x16 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_region_filter_enable + 0x00000000 0x62 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_set_region_start_address + 0x00000000 0x44 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_set_region_end_address + 0x00000000 0x44 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_sec_mode_region_attr_config + 0x00000000 0x5c esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_exception_status + 0x00000000 0x38 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_exception_clear + 0x00000000 0x3a esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_get_exception_info + 0x00000000 0xac esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_interrupt_enable + 0x00000000 0x6a esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_ll_apm_ctrl_clk_gating_enable + 0x00000000 0x8c esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_tee_hal_set_master_secure_mode + 0x00000000 0x24 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_tee_hal_clk_gating_enable + 0x00000000 0x24 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_region_filter_enable + 0x00000000 0x12 esp-idf/hal/libhal.a(apm_hal.c.obj) + .rodata.apm_hal_apm_ctrl_region_config.str1.4 + 0x00000000 0xf0 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_region_config + 0x00000000 0x82 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_exception_status + 0x00000000 0x5e esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_exception_clear + 0x00000000 0x5e esp-idf/hal/libhal.a(apm_hal.c.obj) + .rodata.apm_hal_apm_ctrl_get_exception_info.str1.4 + 0x00000000 0x15c esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_get_exception_info + 0x00000000 0x5a esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_interrupt_enable + 0x00000000 0x60 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_clk_gating_enable + 0x00000000 0x12 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_master_sec_mode_config + 0x00000000 0xa6 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_reset_event_enable + 0x00000000 0x24 esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_get_int_src_num + 0x00000000 0x76 esp-idf/hal/libhal.a(apm_hal.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_PIN_MUX_REG + 0x00000000 0x7c 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_reg_retention_info + 0x00000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart1_regdma_entries + 0x00000000 0x84 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart0_regdma_entries + 0x00000000 0x84 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x00000000 0x3c esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x00000000 0x7d8 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x00000000 0x172 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 0x231 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x00000000 0x1185 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/soc/libsoc.a(uart_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_reg_retention_info + 0x00000000 0xc esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi2_regs_retention + 0x00000000 0x58 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x48 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x00000000 0x2103 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x25c 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 0x283 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x00000000 0x1e72 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/soc/libsoc.a(spi_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_security/libesp_security.a(esp_hmac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.convert_key_type + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.write_and_padd + 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_calculate + 0x00000000 0x230 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .rodata.esp_hmac_jtag_enable.str1.4 + 0x00000000 0x5e esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_jtag_enable + 0x00000000 0xd4 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_jtag_disable + 0x00000000 0x44 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_info 0x00000000 0x3a01 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_abbrev 0x00000000 0x394 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_loc 0x00000000 0x456 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_line 0x00000000 0xc89 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_str 0x00000000 0x2be0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_frame 0x00000000 0xbc esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_acquire + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_acquire + 0x00000000 0x22 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_release + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_release + 0x00000000 0x22 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_acquire + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_acquire + 0x00000000 0x2a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_release + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_release + 0x00000000 0x2a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ecc_lock_acquire + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ecc_lock_release + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_ecc_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_sha_aes_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_mpi_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_hmac_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_ds_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_info 0x00000000 0x2df esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x00000000 0x108 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_line 0x00000000 0x2c4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_str 0x00000000 0x34b esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_frame 0x00000000 0x128 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_security/libesp_security.a(esp_crypto_lock.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 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x00000000 0x4 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) + .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 0x64 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) + .rodata.periph_rtc_dig_clk8m_disable.str1.4 + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__.0 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .sbss.s_rc_fast_freq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .sbss.s_periph_ref_counts + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_info 0x00000000 0x2af esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x00000000 0x19a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_line 0x00000000 0x541 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_str 0x00000000 0x433 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_frame 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .riscv.attributes + 0x00000000 0x5c 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(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) + .iram1.0 0x00000000 0x92 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.esp_fill_random.str1.4 + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__.0 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .sbss.last_ccount.1 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.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) + .rodata.get_idx.str1.4 + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_idx 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_mac_ext.str1.4 + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_efuse_mac_ext + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.insert_mac_ext_into_mac + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_factory_mac.str1.4 + 0x00000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_efuse_factory_mac + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.4 + 0x00000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.4 + 0x00000000 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_mac_addr_from_mac_table + 0x00000000 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.4 + 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0x114 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_default + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.4 + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_read_mac + 0x00000000 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.generate_mac.str1.4 + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.generate_mac + 0x00000000 0x18e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__.0 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__.1 + 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data.s_mac_table + 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x00000000 0xe64 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x00000000 0x2f0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x00000000 0x8f2 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x00000000 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x00000000 0x110b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_str 0x00000000 0x775 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x00000000 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .riscv.attributes + 0x00000000 0x5c 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_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_revoke + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x32 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(sar_periph_ctrl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temperature_sensor_get_raw_value + 0x00000000 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temperature_sensor_ll_set_range + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temperature_sensor_power_acquire + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .rodata.temperature_sensor_power_release.str1.4 + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temperature_sensor_power_release + 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temp_sensor_sync_tsens_idx + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temp_sensor_get_raw_value + 0x00000000 0x146 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .rodata.__func__.0 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .sdata.s_tsens_idx + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .sbss.s_temperature_sensor_power_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .sdata.s_record_max + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .sdata.s_record_min + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .srodata.cst8 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_info 0x00000000 0x46e3 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_abbrev 0x00000000 0x3b9 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_loc 0x00000000 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_line 0x00000000 0xa94 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_str 0x00000000 0x39bd esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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) + .text.esp_clk_tree_osc_slow_get_freq_hz + 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.11 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.10 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.req_core + 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.13 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.7 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.16 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.14 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.12 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.21 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.22 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x00000000 0xcf esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.24 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.26 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.27 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.28 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.29 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.30 0x00000000 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.31 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.32 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.33 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.34 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.2 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__func__.3 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .dram1.0 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .sdata.s_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.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) + .iram1.1 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_acquire + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_release + 0x00000000 0x4 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(systimer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.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) + .rodata.prvTaskDeleteWithCaps.str1.4 + 0x00000000 0xc0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCaps + 0x00000000 0x102 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCapsTask + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x9e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vTaskDeleteWithCaps.str1.4 + 0x00000000 0xd6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vTaskDeleteWithCaps + 0x00000000 0x106 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xQueueCreateWithCaps + 0x00000000 0x7a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vQueueDeleteWithCaps + 0x00000000 0x64 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xSemaphoreCreateGenericWithCaps + 0x00000000 0x9e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vSemaphoreDeleteWithCaps + 0x00000000 0x5a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x96 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x90 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__.0 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__.1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__.2 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__.3 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__.4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x00000000 0x1cd0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x00000000 0x3fc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x00000000 0x897 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 0xd65 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_str 0x00000000 0xe9f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_frame 0x00000000 0x1c0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(idf_additions.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 0x14 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 0x7c 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 0xee esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteMessageToBuffer + 0x00000000 0x64 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 0xc4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadMessageFromBuffer + 0x00000000 0x66 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 0x110 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 0x144 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 0x90 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferDelete + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReset + 0x00000000 0x70 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSpacesAvailable + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferBytesAvailable + 0x00000000 0x38 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 0x1b8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0xe6 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 0x162 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 0x8c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveFromISR + 0x00000000 0xd8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsEmpty + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsFull + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x78 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x78 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_info 0x00000000 0x20cd esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_abbrev 0x00000000 0x34e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_loc 0x00000000 0x26e1 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_line 0x00000000 0x1cf7 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xaf1 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_frame 0x00000000 0x3d4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_always_lock_free + 0x00000000 0x6 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_is_lock_free + 0x00000000 0x6 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_8 + 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_8 + 0x00000000 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_add_8 + 0x00000000 0x56 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_add_fetch_8 + 0x00000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_8 + 0x00000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_sub_fetch_8 + 0x00000000 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_8 + 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_and_fetch_8 + 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_or_fetch_8 + 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_8 + 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_xor_fetch_8 + 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_nand_8 + 0x00000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_nand_fetch_8 + 0x00000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_load_8 + 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_store_8 + 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_add_and_fetch_8 + 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_sub_and_fetch_8 + 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_and_and_fetch_8 + 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_or_and_fetch_8 + 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_xor_and_fetch_8 + 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_nand_8 + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_nand_and_fetch_8 + 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_8 + 0x00000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_8 + 0x00000000 0x5e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_lock_test_and_set_8 + 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_lock_release_8 + 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_load + 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_store + 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange + 0x00000000 0x6e esp-idf/newlib/libnewlib.a(stdatomic.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 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0 0x00000000 0x12a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x4c 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 0x116 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x00000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14 0x00000000 0x66 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.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) + .iram1.2 0x00000000 0xce esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.__func__.2 + 0x00000000 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x00000000 0x6e 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 0x10e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x00000000 0x6a 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 0x1ae 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 0x1c2 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 0x194 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x00000000 0xc0 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 0x4e 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 0x128 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x00000000 0xb2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x00000000 0x154 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x00000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x00000000 0xfa 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 0xc6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x00000000 0x20 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 0xce esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x00000000 0x9e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x00000000 0xee esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x00000000 0x116 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x00000000 0x50 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 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x00000000 0x6c 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 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x00000000 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x00000000 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x00000000 0x52 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x00000000 0x32 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 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x74 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 0x70 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 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateWithCaps + 0x00000000 0x78 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 0x68 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__.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__.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) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x8 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 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x00000000 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24lookup_storage_from_namePKc + 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x00000000 0x2a 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 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN14NVSHandleEntryD2Ev + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x00000000 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .rodata.nvs_flash_init.str1.4 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_find_key + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_key + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_commit + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_blob + 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_blob + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys + 0x00000000 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg + 0x00000000 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_register_security_scheme + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_get_default_security_scheme + 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys_v2 + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg_v2 + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x00000000 0xba esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find_in_handle + 0x00000000 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24close_handles_and_deinitPKc + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition + 0x00000000 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x00000000 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_close + 0x00000000 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_open_from_partition + 0x00000000 0xbe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_open + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIaEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i8 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIhEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u8 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIsEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setItEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u16 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIlEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setImEimPKcT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u32 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIxEimPKcT_ + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIyEimPKcT_ + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIaEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i8 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIhEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u8 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIsEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getItEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u16 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIlEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getImEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u32 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIxEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIyEimPKcPT_ + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZL13s_nvs_handles + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .sbss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x00000000 0x4 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) + .debug_info 0x00000000 0xdfe5 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x00000000 0x1091 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x00000000 0x379d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00000000 0x330 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x00000000 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x00000000 0x30ab esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_str 0x00000000 0xb111 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00000000 0xd10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc 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 0x4a 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 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x60 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 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x56 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 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs4Item6getKeyEPcj + 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x00000000 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000 0xec esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000 0x14c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000 0x12c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000 0x9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000 0x9e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000 0x86 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x20 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._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000 0x7a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0xae esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x12a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage15clearNamespacesEv + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7StorageD2Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage4initEmm + 0x00000000 0x162 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000 0x218 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000 0x27a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000 0x118 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x00000000 0xd520 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x00000000 0xff1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x00000000 0x2e85 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x00000000 0x1a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00000000 0x3c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x00000000 0x38ac esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_str 0x00000000 0xa97c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x00000000 0x76c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0xc 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._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x00000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x1a 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 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple11get_storageEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x00000000 0x919b esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x00000000 0xc4a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x00000000 0xd61 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x00000000 0x1199 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_str 0x00000000 0x92c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x00000000 0x2a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 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._ZN3nvs12NVSPartitionD2Ev + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x00000000 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition11get_addressEv + 0x00000000 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x00000000 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition12get_readonlyEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition4readEjPvj + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartitionD0Ev + 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .rodata._ZTVN3nvs9PartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .rodata._ZTVN3nvs12NVSPartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x00000000 0x17a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x00000000 0x531 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x00000000 0x4fe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x00000000 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x00000000 0x904 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_str 0x00000000 0x1299 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x00000000 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0xc 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._ZN3nvs19NVSPartitionManagerD2Ev + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs7StorageC2EPNS_9PartitionE + 0x00000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x00000000 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000 0x9e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0xac esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000 0xe2 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) + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .sbss._ZN3nvs19NVSPartitionManager8instanceE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x00000000 0xa905 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x00000000 0xee6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x00000000 0xe3d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x00000000 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x00000000 0x18d4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_str 0x00000000 0xa6ee esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x00000000 0x278 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.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._ZN3nvs4LockC2Ev + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4LockD2Ev + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4Lock4initEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4Lock6uninitEv + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .sbss._ZN3nvs4Lock10mSemaphoreE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_info 0x00000000 0xa20 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_abbrev 0x00000000 0x2d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_loc 0x00000000 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_ranges 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_line 0x00000000 0x52a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_str 0x00000000 0x517 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_frame 0x00000000 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0xc 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 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x00000000 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashList5clearEv + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashListD2Ev + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashList5eraseEj + 0x00000000 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x00000000 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x00000000 0x5855 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x00000000 0xa69 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x00000000 0x5ac esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x00000000 0x1044 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_str 0x00000000 0x4702 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x00000000 0x11c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0xc 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 0x86 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4PageC2Ev + 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x00000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10initializeEv + 0x00000000 0x82 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page12getSeqNumberERm + 0x00000000 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page12setSeqNumberEm + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page5eraseEv + 0x00000000 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11markFreeingEv + 0x00000000 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8markFullEv + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000 0x32 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 0x8c 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 0x120 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 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page9copyItemsERS0_ + 0x00000000 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000 0x252 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x00000000 0x168 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x00000000 0x25a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000 0x10a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000 0x40a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x00000000 0x160 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0xc 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 0x2c 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 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager12activatePageEv + 0x00000000 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager14requestNewPageEv + 0x00000000 0xe4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x00000000 0x2ba esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x00000000 0x89c1 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x00000000 0xe18 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x00000000 0xd41 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x00000000 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x00000000 0x1a6c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_str 0x00000000 0x77d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x00000000 0x1cc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.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 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x00000000 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x00000000 0x1012 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x00000000 0x441 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x00000000 0x1fb 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 0x878 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_str 0x00000000 0xf65 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x00000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .riscv.attributes + 0x00000000 0x5c 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) + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x00000000 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text._ZNK3nvs4Item22checkHeaderConsistencyEh + 0x00000000 0x136 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x00000000 0x49e3 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x00000000 0x851 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x00000000 0x30d esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x00000000 0xcf9 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_str 0x00000000 0x3971 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x00000000 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0xc 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._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x00000000 0xca esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x6a 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) + .rodata._ZTVN3nvs21NVSEncryptedPartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_info 0x00000000 0x54aa esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x00000000 0x9df esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x00000000 0x549 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_ranges 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_line 0x00000000 0xe73 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x00000000 0x4602 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_frame 0x00000000 0xec esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x00000000 0xbc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x00000000 0x130 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x00000000 0x1ea esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x00000000 0x13e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x00000000 0x82 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_desc_alloc + 0x00000000 0xb4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.0 0x00000000 0xe0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_free.str1.4 + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x00000000 0x6e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x00000000 0x1d2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x00000000 0x744 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x00000000 0x62 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x00000000 0x108 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x00000000 0x54 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x00000000 0xc8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x00000000 0x173 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x00000000 0x302 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spi_bus_dma_memory_alloc.str1.4 + 0x00000000 0x3a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_dma_memory_alloc + 0x00000000 0x5e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_get_dma_ctx + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_free + 0x00000000 0xa4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x00000000 0x16 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__.1 + 0x00000000 0x13 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__.2 + 0x00000000 0x15 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__.3 + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__.4 + 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__.5 + 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__.6 + 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__.7 + 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .sdata.bus_ctx + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.s_mainbus + 0x00000000 0x68 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_info 0x00000000 0x4fe9 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_abbrev 0x00000000 0x567 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_loc 0x00000000 0x1354 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_aranges + 0x00000000 0xd8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_ranges 0x00000000 0x160 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_line 0x00000000 0x2b68 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_str 0x00000000 0x3114 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_frame 0x00000000 0x2fc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.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.adc1_pad_get_io_num + 0x00000000 0x66 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__.8 + 0x00000000 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .sdata.adc_reg_lock + 0x00000000 0x8 esp-idf/driver/libdriver.a(adc_legacy.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.esp_aes_xts_decode_keys + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_gf128mul_x_ble + 0x00000000 0x12a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_init + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_free + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_setkey_enc + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_setkey_dec + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_crypt_xts + 0x00000000 0x1c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00000000 0x73d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x00000000 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x00000000 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x00000000 0x958 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_str 0x00000000 0x3f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x00000000 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .riscv.attributes + 0x00000000 0x5c 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) + .text.valid_key_length + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .text.esp_aes_init + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .text.esp_aes_free + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .text.esp_aes_setkey + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x00000000 0x295 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x00000000 0x17d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x00000000 0x167 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x00000000 0x3ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_str 0x00000000 0x2e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.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) + .rodata.esp_aes_validate_input.str1.4 + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_validate_input + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_acquire_hardware + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_release_hardware + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x00000000 0x86 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 0x86 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_ecb + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_cbc.str1.4 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cbc + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_cfb128.str1.4 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb128 + 0x00000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_ofb + 0x00000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_ctr.str1.4 + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_ctr + 0x00000000 0x19a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x00000000 0x4200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x00000000 0x3e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x00000000 0x1210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x00000000 0x17a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_str 0x00000000 0x28b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x00000000 0x270 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.s_check_dma_capable + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_isr_initialise + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.dma_desc_setup_link + 0x00000000 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .iram1.0 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.esp_aes_dma_wait_complete.str1.4 + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_dma_wait_complete + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.esp_aes_intr_alloc.str1.4 + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_intr_alloc + 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.esp_aes_process_dma.str1.4 + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_process_dma + 0x00000000 0x3c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_process_dma_ext_ram + 0x00000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.__func__.0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.__func__.1 + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .bss.op_sem_buf.2 + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.4 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.3 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.2 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.1 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .sbss.op_complete_sem + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_info 0x00000000 0x1647 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_abbrev 0x00000000 0x51b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_loc 0x00000000 0xe49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_line 0x00000000 0x149d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_str 0x00000000 0x1247 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_frame 0x00000000 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.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) + .text.mbedtls_platform_zeroize + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_zeroize_and_free + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .srodata.memset_func + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x00000000 0x1ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x00000000 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_loc 0x00000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x00000000 0x246 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_str 0x00000000 0x277 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .text.esp_aes_dma_start + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .text.esp_aes_dma_done + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_info 0x00000000 0x2a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_abbrev 0x00000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_loc 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_line 0x00000000 0x2e5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_str 0x00000000 0x45a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_frame 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.crypto_shared_gdma_new_channel + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata.crypto_shared_gdma_init.str1.4 + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.crypto_shared_gdma_init + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_start + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_start_axi_ahb + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_free + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .sbss.tx_channel + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .sbss.rx_channel + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_info 0x00000000 0x2003 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_abbrev 0x00000000 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_loc 0x00000000 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_line 0x00000000 0xa84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_str 0x00000000 0x15e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_frame 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.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_calloc + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x00000000 0x2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .sdata.mbedtls_free_func + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .sdata.mbedtls_calloc_func + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x00000000 0x252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x00000000 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x00000000 0x287 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_str 0x00000000 0x320 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.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.esp_mbedtls_mem_calloc + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text.esp_mbedtls_mem_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x00000000 0x177 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x00000000 0x290 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_str 0x00000000 0x27f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_funcs_md5_check + 0x00000000 0x5a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_i154_funcs_md5_check + 0x00000000 0x5a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_set + 0x00000000 0xa2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_clear + 0x00000000 0xa2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_event_duration_get + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_pti_set + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_pti_get + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_ieee802154_pti_get + 0x00000000 0x4a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_wifi_request + 0x00000000 0x10 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .coexiram.7 0x00000000 0xc C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .iram1.8 0x00000000 0x10 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .iram1.9 0x00000000 0xc C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_init + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_deinit + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_enable + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_disable + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .coexiram.10 0x00000000 0x30 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_preference_set + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_version_get + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_version_get_value + 0x00000000 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_wifi_register_update_lpclk_callback + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_update_lpclk_interval + 0x00000000 0x10 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.coex_register_start_cb + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_ieee802154_txrx_pti_set + 0x00000000 0x18 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_ieee802154_ack_pti_set + 0x00000000 0x18 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_ieee802154_coex_break_notify + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_ieee802154_extcoex_tx_stage + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text.esp_coex_ieee802154_extcoex_rx_stage + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .bss.s_set_lpclk_source_cb + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .data.g_coex_adapter_funcs_md5 + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .data.g_coex_basic_md5 + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .data.g_coex_i154_funcs_md5 + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .data.libcoexist_reversion_remote + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.1 0x00000000 0x31 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.11 0x00000000 0x1f C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.2 0x00000000 0x2b C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.3 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.4 0x00000000 0x31 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.5 0x00000000 0x2b C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .dram1.6 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .rodata.coex_version_str + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .rodata.esp_coex_adapter_funcs_md5_check.str1.4 + 0x00000000 0x3d C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .rodata.esp_coex_i154_funcs_md5_check.str1.4 + 0x00000000 0x45 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_pti_set + 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .coexiram.3 0x00000000 0x1e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .iram1.4 0x00000000 0x62 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .iram1.5 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_init + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_deinit + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_enable + 0x00000000 0x60 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_disable + 0x00000000 0x4c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .coexiram.8 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_register_start_cb + 0x00000000 0x36 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .bss.coex_enabled_ref + 0x00000000 0x1 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .coexiram.1 0x00000000 0x92 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .coexiram.2 0x00000000 0x22 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .coexiram.3 0x00000000 0x22 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.coex_hw_timer_force + 0x00000000 0x18 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.coex_hw_timer_unforce + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_set_IEEE802154_TXRX_pti + 0x00000000 0x10 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_set_IEEE802154_ACK_pti + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_set_IEEE802154_force_rx_enable + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_set_IEEE802154_coex_delay + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_set_IEEE802154_pti_offset + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.hal_ieee802154_coex_break_notify + 0x00000000 0x86 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.coex_hw_debug_matrix_config + 0x00000000 0x9a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text.coex_hw_debug_matrix_init + 0x00000000 0x34 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .dram1.4 0x00000000 0x23 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .text.coex_rom_osi_funcs_deinit + 0x00000000 0x28 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_change + 0x00000000 0x622 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .coexiram.1 0x00000000 0x34 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .coexiram.2 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_bit_set + 0x00000000 0xbc C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_bit_clear + 0x00000000 0xc0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_get + 0x00000000 0x56 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .coexiram.3 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_phase_idx_set + 0x00000000 0x68 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .coexiram.4 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_interval_get + 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .coexiram.5 0x00000000 0x34 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_period_get + 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_phase_get + 0x00000000 0x44 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_get_phase_by_idx + 0x00000000 0x46 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_register_callback + 0x00000000 0x4e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_wifi_channel_set + 0x00000000 0x4e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_wifi_channel_get + 0x00000000 0x7a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_register_wifi_channel_change_callback + 0x00000000 0x34 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_process_restart + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_flexible_period_set + 0x00000000 0x34 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_flexible_period_get + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_deinit + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_default + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_default + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_idle_bt_idle_wifi_default + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_conn + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_connecting + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_scan + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_conn + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_connecting + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_scan + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_conn + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_connecting + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_scan + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_conn + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_connecting + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_scan + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_external_coex_wifi_connecting + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_external_coex_wifi_default + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_external_coex_wifi_default_rxonly + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .data.coex_schm_external_coex_wifi_scan + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .dram1.6 0x00000000 0x1e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .rodata.__func__.3777 + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .text.coex_gpio_debug_matrix_init + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .text.coex_gpio_debug_matrix_config + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .text.coex_set_gpio_debug_cb + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .text.coex_gpio_debug_max_event_get + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .text.coex_dbg_set_log_level + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .dram1.1 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .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 0x68 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_unload_all + 0x00000000 0x82 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_find_first + 0x00000000 0x38 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 0xbe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x00000000 0x16e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x00000000 0x80 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_copy.str1.4 + 0x00000000 0x137 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_copy + 0x00000000 0x222 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) + .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) + .rodata.esp_partition_write.str1.4 + 0x00000000 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_write + 0x00000000 0x8e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_read_raw + 0x00000000 0x5a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_write_raw + 0x00000000 0x66 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_erase_range + 0x00000000 0x7e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_mmap + 0x00000000 0x94 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_munmap + 0x00000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_read + 0x00000000 0xb2 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x00000000 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x00000000 0x68 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.0 + 0x00000000 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.1 + 0x00000000 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.2 + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.3 + 0x00000000 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.4 + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__.5 + 0x00000000 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.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 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x181 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x1f 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 0x424 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x5f3 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_cal_voltage.str1.4 + 0x00000000 0x29 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_cal_voltage + 0x00000000 0x110 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_tsens_val + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.__func__.0 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.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 0xb8 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 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x00000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00000000 0x1e36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x39b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x592 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 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000 0xd95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x190a 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x00000000 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.s_flash_seg_needs_map + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x00000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x00000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x00000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x00000000 0xca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x00000000 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000 0x2e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x00000000 0x17a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x00000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x00000000 0x19c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x00000000 0x5f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x00000000 0xce esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x00000000 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x00000000 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x00000000 0x1d2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x00000000 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0xba 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) + .rodata.__func__.2 + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .sbss.ota_has_initial_contents + 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00000000 0x2268 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000 0x475 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00000000 0x104c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000 0x238c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00000000 0x194a 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000000 0x290 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .riscv.attributes + 0x00000000 0x5c 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) + .rodata.esp_partition_table_verify.str1.4 + 0x00000000 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x00000000 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000 0x655 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000000 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00000000 0x1fc 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 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000 0x800 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00000000 0x4d3 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x00000000 0xf2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x00000000 0xac esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x00000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x00000000 0xf1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x00000000 0x18a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x00000000 0x11a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x00000000 0xba esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x00000000 0x1d2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x00000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x00000000 0x15c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x12 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) + .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 0x2e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000 0x1e4c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000 0x330 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00000000 0x1a90 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 0x120 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00000000 0x2012 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00000000 0x177f 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000000 0x334 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.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 0x3a 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 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x00000000 0x7a 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_info 0x00000000 0x568 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00000000 0x182 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00000000 0x23d 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 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000 0x5ac esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00000000 0x423 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.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 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_efuse_blk_validity.str1.4 + 0x00000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_efuse_blk_validity + 0x00000000 0x110 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x00000000 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x00000000 0x166 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00000000 0xb93 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00000000 0x239 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000 0x5bb esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00000000 0xa5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00000000 0x111b 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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) + .text.clk_hal_ahb_get_freq_hz + 0x00000000 0xa6 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_apb_get_freq_hz + 0x00000000 0x2e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x4e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x46 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.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.aes_ll_write_key + 0x00000000 0x58 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_write_block + 0x00000000 0x46 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_read_block + 0x00000000 0x46 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_set_iv + 0x00000000 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_read_iv + 0x00000000 0x46 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_setkey + 0x00000000 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_transform_block + 0x00000000 0x32 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_transform_dma_start + 0x00000000 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_transform_dma_finish + 0x00000000 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_mode_init + 0x00000000 0x1a esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_set_iv + 0x00000000 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_read_iv + 0x00000000 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_wait_done + 0x00000000 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x00000000 0x6f1 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x00000000 0x289 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x00000000 0x2ba esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x00000000 0x903 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_str 0x00000000 0x5c7 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x00000000 0x140 esp-idf/hal/libhal.a(aes_hal.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_ll_config_output + 0x00000000 0x44 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_ll_write_block_512 + 0x00000000 0x2c esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_ll_read_result_256 + 0x00000000 0x24 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_start + 0x00000000 0x12 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_configure + 0x00000000 0x5c esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_write_one_block_512 + 0x00000000 0x2c esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_write_block_512 + 0x00000000 0x1a esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_next_block_padding + 0x00000000 0x14 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_next_block_normal + 0x00000000 0x12 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_read_result_256 + 0x00000000 0x22 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_clean + 0x00000000 0x14 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_info 0x00000000 0x568 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_abbrev 0x00000000 0x1d0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_loc 0x00000000 0x23a esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_line 0x00000000 0x8dd esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_str 0x00000000 0x472 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_frame 0x00000000 0xfc esp-idf/hal/libhal.a(hmac_hal.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(hmac_hal.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) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_regs_retention + 0x00000000 0xc esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_regs_entries + 0x00000000 0x2c esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_attributes + 0x00000000 0x64 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_info 0x00000000 0x533 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x15f esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_line 0x00000000 0x23d esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_str 0x00000000 0x960 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.spi_ll_enable_bus_clock.str1.4 + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_enable_bus_clock + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_reset_register + 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_claim + 0x00000000 0xec esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_in_use + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_free + 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.__func__.0 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.__func__.1 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .bss.spi_claiming_func + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .sdata.spi_periph_claimed + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_info 0x00000000 0x3442 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x2f1 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x267 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_line 0x00000000 0x64e esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0x27e0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_frame 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_acquire_group_handle + 0x00000000 0xde esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_acquire_pair_handle + 0x00000000 0xca esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_release_group_handle.str1.4 + 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_release_group_handle + 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_release_pair_handle.str1.4 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_release_pair_handle + 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_del_rx_channel + 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_del_tx_channel + 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.do_allocate_gdma_channel.str1.4 + 0x00000000 0x1aa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.do_allocate_gdma_channel + 0x00000000 0x44c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_install_tx_interrupt.str1.4 + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_tx_interrupt + 0x00000000 0xea esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_rx_interrupt + 0x00000000 0xea esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_default_rx_isr + 0x00000000 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_default_tx_isr + 0x00000000 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_new_ahb_channel + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_del_channel + 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_group_channel_id + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_connect.str1.4 + 0x00000000 0xba esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_connect + 0x00000000 0x1d4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_disconnect.str1.4 + 0x00000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_disconnect + 0x00000000 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_free_m2m_trig_id_mask + 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_config_transfer.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_config_transfer + 0x00000000 0x15c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_alignment_constraints + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_apply_strategy + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_set_priority + 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_register_tx_event_callbacks.str1.4 + 0x00000000 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_tx_event_callbacks + 0x00000000 0x182 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_rx_event_callbacks + 0x00000000 0x1be esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_start.str1.4 + 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_start + 0x00000000 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_stop + 0x00000000 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_append + 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_reset + 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.20 + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.19 + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.18 + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.17 + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.16 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.15 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.14 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.13 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.12 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.11 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.10 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.9 + 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.8 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.7 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.6 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.5 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.4 + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__func__.3 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__func__.2 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__func__.1 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__.0 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data.s_platform + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_info 0x00000000 0x7c72 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_abbrev 0x00000000 0x568 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_loc 0x00000000 0x21e7 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_ranges 0x00000000 0x180 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_line 0x00000000 0x3e25 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_str 0x00000000 0x43b6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_frame 0x00000000 0x4ec esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.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_zeroize + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.esp_internal_sha_update_state + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_init + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_free + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha256_padding + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x00000000 0x78b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x00000000 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x00000000 0x5cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x00000000 0x987 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x00000000 0x4c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x00000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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.s_check_dma_capable + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_block_mode.str1.4 + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_block_mode + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma_process.str1.4 + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma_process + 0x00000000 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_write_digest_state + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_read_digest_state + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_acquire_hardware + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_release_hardware + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma.str1.4 + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma + 0x00000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__.0 + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.1 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.0 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x00000000 0x3a6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x00000000 0x494 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x00000000 0x964 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x00000000 0xe28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x00000000 0x291a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x00000000 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text.esp_sha_dma_start + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_info 0x00000000 0x25f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_abbrev 0x00000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_loc 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_line 0x00000000 0x2ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_str 0x00000000 0x442 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_frame 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.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 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x00000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x00000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x00000000 0xcc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x00000000 0x70 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x00000000 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x00000000 0x3a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x00000000 0xf4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x00000000 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x00000000 0x1ea esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x00000000 0xb2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x00000000 0x116 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x00000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x00000000 0xa0 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 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x00000000 0xc8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x00000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x00000000 0xb4 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 0x90 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x00000000 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x00000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x00000000 0xe6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x00000000 0xb9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x00000000 0x144 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x00000000 0x76 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x00000000 0xc8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x00000000 0xf6 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) + .sbss.s_ota_ops_last_handle + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .sbss.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(gdma_hal_top.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_deinit + 0x00000000 0x6 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_start_with_desc + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_stop + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_append + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_reset + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_priority + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_peri + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_disconnect_peri + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_burst + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_burst_size + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_strategy + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_intr + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_clear_intr + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_read_intr_status + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_intr_status_reg + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_eof_desc_addr + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_access_encrypt_mem + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_etm_task + 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_info 0x00000000 0x23a0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_abbrev 0x00000000 0x276 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_loc 0x00000000 0xa5c esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_aranges + 0x00000000 0xa8 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_line 0x00000000 0x5bb esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_str 0x00000000 0x14fc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_frame 0x00000000 0x1fc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_start_with_desc + 0x00000000 0x8a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_stop + 0x00000000 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_append + 0x00000000 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_reset + 0x00000000 0x4e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_priority + 0x00000000 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_peri + 0x00000000 0x9a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_disconnect_peri + 0x00000000 0x44 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_burst + 0x00000000 0x78 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_strategy + 0x00000000 0x84 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_intr + 0x00000000 0x4a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_clear_intr + 0x00000000 0x1c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_read_intr_status + 0x00000000 0x32 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_intr_status_reg + 0x00000000 0x1c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_eof_desc_addr + 0x00000000 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_etm_task + 0x00000000 0x42 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_init + 0x00000000 0xb4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .sdata.gdma_ahb_hal_priv_data + 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_info 0x00000000 0x2d0d esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_abbrev 0x00000000 0x367 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_loc 0x00000000 0x15d7 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_line 0x00000000 0xd23 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_str 0x00000000 0x196b esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_frame 0x00000000 0x110 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.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.sha_hal_wait_idle + 0x00000000 0xa esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_block + 0x00000000 0x66 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_dma + 0x00000000 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_read_digest + 0x00000000 0x6c esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_write_digest + 0x00000000 0x34 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x00000000 0x61e esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x00000000 0x1f9 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x00000000 0x5d7 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x00000000 0x717 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x00000000 0x42f esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x00000000 0xb0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_chx_regs_retention + 0x00000000 0x24 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_g0p2_regs_retention + 0x00000000 0x58 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_g0p1_regs_retention + 0x00000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_g0p0_regs_retention + 0x00000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_periph_signals + 0x00000000 0x1c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_info 0x00000000 0x91e esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_abbrev 0x00000000 0x172 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_line 0x00000000 0x242 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_str 0x00000000 0x1507 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .text._ZdaPv 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_info 0x00000000 0x92 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_abbrev 0x00000000 0x8f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_loclists + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_line 0x00000000 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_str 0x00000000 0x112 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .debug_line_str + 0x00000000 0x2a4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x00000000 0xe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15get_new_handlerv + 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .sbss._ZN12_GLOBAL__N_113__new_handlerE + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .srodata._ZSt7nothrow + 0x00000000 0x1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_info 0x00000000 0x132 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_abbrev 0x00000000 0x151 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_loclists + 0x00000000 0x1d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_aranges + 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_rnglists + 0x00000000 0x19 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_line 0x00000000 0xbe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_str 0x00000000 0x182 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .debug_line_str + 0x00000000 0x2b0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .eh_frame 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .text._ZnajRKSt9nothrow_t + 0x00000000 0x26 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .gcc_except_table._ZnajRKSt9nothrow_t + 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_info 0x00000000 0x11a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_abbrev 0x00000000 0x122 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_loclists + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line 0x00000000 0xa9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_str 0x00000000 0x154 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line_str + 0x00000000 0x2aa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .sdata.DW.ref.__gxx_personality_v0 + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .eh_frame 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .text._ZdlPv 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_info 0x00000000 0x5af C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_abbrev 0x00000000 0x199 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_loclists + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_line 0x00000000 0x81 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_str 0x00000000 0x292 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .debug_line_str + 0x00000000 0x3f5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x00000000 0x6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_begin_catch + 0x00000000 0x7c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_end_catch + 0x00000000 0x78 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_info 0x00000000 0xd9b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_abbrev 0x00000000 0x509 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_loclists + 0x00000000 0x13f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_aranges + 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_rnglists + 0x00000000 0x43 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_line 0x00000000 0x45a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_str 0x00000000 0xb0b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_line_str + 0x00000000 0x4ea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .eh_frame 0x00000000 0xac C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x00000000 0x2e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals_fast + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals + 0x00000000 0x6a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x2a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .fini_array 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .sbss._ZN12_GLOBAL__N_110eh_globalsE + 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .sdata.DW.ref.__gxx_personality_v0 + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .eh_frame 0x00000000 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x00000000 0x1e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13get_terminatev + 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text.unlikely._ZSt9terminatev + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0xe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14get_unexpectedv + 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text.unlikely._ZSt10unexpectedv + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_info 0x00000000 0xadc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00000000 0x41e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_loclists + 0x00000000 0x86 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_aranges + 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x00000000 0x3d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line 0x00000000 0x2a9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_str 0x00000000 0x910 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line_str + 0x00000000 0x4f6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .sdata.DW.ref.__gxx_personality_v0 + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .eh_frame 0x00000000 0xe4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .sdata._ZN10__cxxabiv120__unexpected_handlerE + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000 0x3c3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x00000000 0x277 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000 0x7c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_str 0x00000000 0x66f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line_str + 0x00000000 0x4a6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .text._Znaj 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_info 0x00000000 0xab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_abbrev 0x00000000 0xa4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_loclists + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_line 0x00000000 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_str 0x00000000 0x111 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .debug_line_str + 0x00000000 0x2a4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .sdata._ZN10__cxxabiv119__terminate_handlerE + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_info 0x00000000 0x8b0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x00000000 0x342 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line 0x00000000 0x8a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_str 0x00000000 0x776 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line_str + 0x00000000 0x4ff C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + .group 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .text._Znwj 0x00000000 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .rodata._ZTSSt9exception + 0x00000000 0xd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .srodata._ZTISt9exception + 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .rodata._ZTSSt9bad_alloc + 0x00000000 0xd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .rodata._ZTISt9bad_alloc + 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_info 0x00000000 0x87e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_abbrev 0x00000000 0x2ef C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_loclists + 0x00000000 0x43 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_rnglists + 0x00000000 0x1f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_line 0x00000000 0x145 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_str 0x00000000 0x41c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .debug_line_str + 0x00000000 0x49e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .eh_frame 0x00000000 0x38 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x00000000 0x12 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x00000000 0x22 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZNKSt9type_infoeqERKS_.isra.0 + 0x00000000 0x3e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x00000000 0xbc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x00000000 0x2c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_info 0x00000000 0xa57 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x00000000 0x478 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x00000000 0x42e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x00000000 0x50 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line 0x00000000 0x43a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_str 0x00000000 0x94e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line_str + 0x00000000 0x3e2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .eh_frame 0x00000000 0x130 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD2Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info14__is_pointer_pEv + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x42 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_info 0x00000000 0x553 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_abbrev 0x00000000 0x2ff C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_loclists + 0x00000000 0xea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_aranges + 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_rnglists + 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_line 0x00000000 0x1b1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_str 0x00000000 0x48a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .debug_line_str + 0x00000000 0x3bb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .eh_frame 0x00000000 0x80 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .rodata._ZNKSt9bad_alloc4whatEv.str1.4 + 0x00000000 0xf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .text._ZNKSt9bad_alloc4whatEv + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .text._ZNSt9bad_allocD2Ev + 0x00000000 0x12 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .text._ZNSt9bad_allocD0Ev + 0x00000000 0x22 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .rodata._ZTVSt9bad_alloc + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_info 0x00000000 0x28b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_abbrev 0x00000000 0x1f6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_loclists + 0x00000000 0x61 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_aranges + 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x00000000 0x1f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line 0x00000000 0xee C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_str 0x00000000 0x20d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line_str + 0x00000000 0x34f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .eh_frame 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x00000000 0x36 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x00000000 0x12 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x00000000 0x22 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNKSt9type_infoeqERKS_.isra.0 + 0x00000000 0x3e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x00000000 0x2e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x00000000 0x2c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_info 0x00000000 0xa8f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_abbrev 0x00000000 0x46a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_loclists + 0x00000000 0x33a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_aranges + 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_rnglists + 0x00000000 0x67 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_line 0x00000000 0x493 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_str 0x00000000 0x8c9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_line_str + 0x00000000 0x3d9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .eh_frame 0x00000000 0x12c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .text._ZdlPvj 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_info 0x00000000 0xab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_abbrev 0x00000000 0xa9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_loclists + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_line 0x00000000 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_str 0x00000000 0x107 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .debug_line_str + 0x00000000 0x2a4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD2Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.4 + 0x00000000 0xf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.4 + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x14 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_info 0x00000000 0x8c2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_abbrev 0x00000000 0x3f2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_loclists + 0x00000000 0xa2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_aranges + 0x00000000 0x78 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_rnglists + 0x00000000 0x55 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_line 0x00000000 0x1e7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_str 0x00000000 0x98a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_line_str + 0x00000000 0x434 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .eh_frame 0x00000000 0x104 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_info 0x00000000 0x164 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_abbrev 0x00000000 0xd0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_loclists + 0x00000000 0x81 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_rnglists + 0x00000000 0x16 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_line 0x00000000 0x11b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_str 0x00000000 0x1d3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + .text 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_info 0x00000000 0x20a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_abbrev 0x00000000 0x13d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_loclists + 0x00000000 0x89 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_rnglists + 0x00000000 0x16 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line 0x00000000 0x157 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_str 0x00000000 0x1fc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .rodata 0x00000000 0x100 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_info 0x00000000 0xed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_abbrev 0x00000000 0x70 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_line 0x00000000 0x3f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_str 0x00000000 0x1a7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .text 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_info 0x00000000 0x157 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_abbrev 0x00000000 0xca C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_loclists + 0x00000000 0x44 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_rnglists + 0x00000000 0x16 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_line 0x00000000 0xdb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_str 0x00000000 0x1c4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + .text 0x00000000 0x4a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_info 0x00000000 0x215 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_abbrev 0x00000000 0x13d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_loclists + 0x00000000 0x86 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_rnglists + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_line 0x00000000 0x143 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_str 0x00000000 0x1fe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + .text 0x00000000 0x42 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xe6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x65 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xd6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xe9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x1ab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x52 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0xe6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x65 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_loclists + 0x00000000 0x21 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0xcf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0x1a7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + .text 0x00000000 0x394 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x7a8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1bf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x556 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x8e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x00000000 0xa2e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x259 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + .text 0x00000000 0x362 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x7f1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1ca C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x479 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x70 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xa36 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x259 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + .text 0x00000000 0x35a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x776 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x1a6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x6ad C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x8f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x97b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x25a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x322 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x7c3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1aa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x520 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x56 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0x98d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x25a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + .text 0x00000000 0x458 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_info 0x00000000 0x6ac C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_abbrev 0x00000000 0x185 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_loclists + 0x00000000 0x7b4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_rnglists + 0x00000000 0x148 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_line 0x00000000 0xf02 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_str 0x00000000 0x3ae C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_line_str + 0x00000000 0x1c8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .debug_frame 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + .text 0x00000000 0x5f6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_info 0x00000000 0x4f2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_abbrev 0x00000000 0x186 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_loclists + 0x00000000 0xafa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_rnglists + 0x00000000 0xf0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_line 0x00000000 0x1384 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_str 0x00000000 0x294 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_line_str + 0x00000000 0x1be C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .debug_frame 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + .text 0x00000000 0x64 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_info 0x00000000 0x1c2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_abbrev 0x00000000 0x15f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_loclists + 0x00000000 0xaa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_line 0x00000000 0x1df C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_str 0x00000000 0x1a1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_line_str + 0x00000000 0x1cb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + .text 0x00000000 0x74 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_info 0x00000000 0x268 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_abbrev 0x00000000 0x164 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_loclists + 0x00000000 0x95 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_rnglists + 0x00000000 0x2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_line 0x00000000 0x225 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_str 0x00000000 0x23e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_line_str + 0x00000000 0x1d1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .debug_frame 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + .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 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIiET_v + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPvET_v + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIP11frame_stateET_v + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void_and_return + 0x00000000 0xc 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___register_frame_info_bases + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table_bases + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Find_FDE + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetGR + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetCFA + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetIP + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetGR + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetIPInfo + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z17__frame_state_forPvP11frame_state + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Resume + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_RaiseException + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_ForcedUnwind + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Backtrace + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___gxx_personality_v0 + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___cxa_allocate_exception + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___cxa_throw + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.rfpll_cap_track + 0x00000000 0x8e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.txpwr_correct + 0x00000000 0x86 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.txpwr_cal_track + 0x00000000 0x13a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.tx_i2c_track + 0x00000000 0xe8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.bt_track_tx_power + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.bt_track_pll_cap + 0x00000000 0x70 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.wifi_track_tx_power + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.phy_param_track + 0x00000000 0x7a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.phy_cal_param_track + 0x00000000 0x1e0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.tx_pwctrl_background_ + 0x00000000 0x8c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text.phy_param_track_tot + 0x00000000 0xa8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .rodata.phy_cal_param_track.str1.4 + 0x00000000 0xb C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .rodata.rfpll_cap_track.str1.4 + 0x00000000 0x15 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .rodata.txpwr_cal_track.str1.4 + 0x00000000 0x20 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.RFChannelSel + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_change_channel + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_rx_rifs_en + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_current_level_set + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_bbpll_en_usb + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_bt_power_track + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_xpd_tsens + 0x00000000 0x30 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.bb_wdt_rst_enable + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.bb_wdt_int_enable + 0x00000000 0x20 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.bb_wdt_timeout_clear + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.bb_wdt_get_status + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_get_rf_cal_version + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.noise_check_loop + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_wakeup_init + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_close_rf + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.tx_pwctrl_background + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.esp_tx_state_out + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_dft_cfg + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_wifitx_cfg + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_wifirx_cfg + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_bttx_cfg + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_btrx_cfg + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_tx_cfg + 0x00000000 0x22 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.ant_rx_cfg + 0x00000000 0x30 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_chan_dump_cfg + 0x00000000 0x12 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_dig_reg_backup + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_chan_filt_set + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.set_cca 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.set_rx_sense + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.rx_gain_force + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_i2c_enter_critical + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_i2c_exit_critical + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_ble_set_chan_base + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_init_param_set + 0x00000000 0xc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text.phy_get_rfdata_num + 0x00000000 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .iram1 0x00000000 0x30c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_get_romfunc_addr + 0x00000000 0x114 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.rc_cal_init + 0x00000000 0x36 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.rf_init 0x00000000 0xf8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.bb_init 0x00000000 0x12c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.register_chipv7_phy_init_param + 0x00000000 0x94 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_xpd_rf + 0x00000000 0x54 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_close_rf_ + 0x00000000 0x84 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.esp_phy_efuse_get_mac + 0x00000000 0x12 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_get_mac_addr + 0x00000000 0x50 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_set_mac_data + 0x00000000 0x52 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_rfcal_data_sub + 0x00000000 0x64 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.rf_cal_data_recovery + 0x00000000 0x40 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_rfcal_data_check_value + 0x00000000 0x396 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.rf_cal_data_backup + 0x00000000 0x16 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.phy_rfcal_data_check + 0x00000000 0x7e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text.register_chipv7_phy + 0x00000000 0x216 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .bss.g_phyFuns + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .data.phy_param + 0x00000000 0x198 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .iram1 0x00000000 0xd0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_pbus_force_mode + 0x00000000 0x98 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_pbus_rd_addr + 0x00000000 0x5c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .rodata.ram_pbus_rd_addr + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_pbus_rd_shift + 0x00000000 0x3a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .rodata.ram_pbus_rd_shift + 0x00000000 0x18 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_pbus_xpd_rx_on + 0x00000000 0x84 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_pbus_xpd_tx_on + 0x00000000 0xd2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_set_loopback_gain + 0x00000000 0x96 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.ram_txcal_debuge_mode + 0x00000000 0x66 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.save_pbus_reg + 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.write_pbus_mem + 0x00000000 0x16a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .rodata.write_pbus_mem + 0x00000000 0x28 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text.set_pbus_mem + 0x00000000 0x19c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .rodata 0x00000000 0x5c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .iram1 0x00000000 0x40e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .rodata 0x00000000 0x28 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.read_rf_freq_mem_new + 0x00000000 0x46 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.freq_i2c_mem_write_new + 0x00000000 0x40 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.bt_txpwr_freq + 0x00000000 0x84 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.wr_rf_freq_mem_new + 0x00000000 0x70 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.pll_dac_mem_update_new + 0x00000000 0x9e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.pll_cap_mem_update_new + 0x00000000 0xe0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.get_rf_freq_init_new + 0x00000000 0x1bc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.set_chan_freq_hw_init + 0x00000000 0x26 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text.ram_set_chan_freq_sw_start + 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_set_most_tpw + 0x00000000 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_get_most_tpw + 0x00000000 0x96 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_get_adc_rand + 0x00000000 0x186 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_internal_delay + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_ftm_comp + 0x00000000 0x1e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_11p_set + 0x00000000 0x1c6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_freq_mem_backup + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_dig_reg_backup_new + 0x00000000 0x108 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_set_rate + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text.phy_get_rx_freq + 0x00000000 0x5e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .rodata 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.phy_rfpll_set_freq_offset + 0x00000000 0x5a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.phy_force_freq_set + 0x00000000 0x8c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.rfpll_cap_correct_new + 0x00000000 0x8c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.phy_set_freq + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.chip_v7_set_chan_misc + 0x00000000 0x24 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.chip_v7_set_chan + 0x00000000 0x10a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.chip_v7_set_chan_offset + 0x00000000 0x8e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.set_chanfreq + 0x00000000 0x24 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text.rfpll_chgp_cal + 0x00000000 0x12a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .rodata.rfpll_cap_correct_new.str1.4 + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .rodata.rfpll_chgp_cal.str1.4 + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.phy_set_tsens_power + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.tsens_read_init_new + 0x00000000 0x38 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.tsens_dac_to_index + 0x00000000 0x30 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.tsens_dac_cal_new + 0x00000000 0x78 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.phy_set_tsens_range + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.ram_tsens_temp_read_new + 0x00000000 0x74 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.phy_get_tsens_value + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.tsens_temp_read_new + 0x00000000 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.ram_temp_to_power + 0x00000000 0x26 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text.get_temp_init_new + 0x00000000 0x44 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .rodata.phy_tsens_attribute + 0x00000000 0x1e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .text.ram_set_chan_cal_interp + 0x00000000 0x50 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .text.ram_bb_bss_cbw40 + 0x00000000 0x92 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .text.chan14_mic_cfg + 0x00000000 0x46 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .text.chan14_mic_enable + 0x00000000 0x2e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + .text.rc_cal_new + 0x00000000 0x112 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .iram1 0x00000000 0x7e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .text.ram_pwdet_tone_start + 0x00000000 0x7e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .text.ram_pwdet_wait_idle + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .text.ram_read_sar_dout + 0x00000000 0x2e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .text.get_sar2_vol_new + 0x00000000 0xbc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.gen_rx_gain_table_new + 0x00000000 0x144 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.get_rxbb_dc + 0x00000000 0x52 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.wr_rx_gain_mem + 0x00000000 0x198 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.rxiq_cal_init + 0x00000000 0x188 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.set_rx_gain_table + 0x00000000 0x26c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text.rx_table_track + 0x00000000 0xd4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .rodata 0x00000000 0x2e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .rodata.gen_rx_gain_table_new.str1.4 + 0x00000000 0x3e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .rodata.rx_table_track.str1.4 + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.get_phy_version_str + 0x00000000 0x4c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_version_print + 0x00000000 0x3a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_reg_check + 0x00000000 0x36e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_i2c_check + 0x00000000 0x1d6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.get_dc_value + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_tx_gain_print + 0x00000000 0x1ea C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.get_bias_ref_code + 0x00000000 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_get_vdd33 + 0x00000000 0x94 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.rfpll_cap_check + 0x00000000 0x10a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.phy_cal_print + 0x00000000 0x5c6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.pbus_print + 0x00000000 0xec C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text.debug_print_line + 0x00000000 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .bss.phy_version_str + 0x00000000 0x28 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.debug_print_line.str1.4 + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.get_phy_version_str.str1.4 + 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.pbus_print.str1.4 + 0x00000000 0x41 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.phy_cal_print.str1.4 + 0x00000000 0x1dc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.phy_i2c_check.str1.4 + 0x00000000 0xd6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.phy_reg_check.str1.4 + 0x00000000 0x170 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.phy_tx_gain_print.str1.4 + 0x00000000 0xa6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.phy_version_print.str1.4 + 0x00000000 0x1d C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .rodata.rfpll_cap_check.str1.4 + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.wifi_11g_rate_chg_new + 0x00000000 0x20 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.set_tx_gain_mem + 0x00000000 0x152 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.get_chan_target_power_new + 0x00000000 0x9c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.get_tx_gain_value + 0x00000000 0x6c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.bt_get_tx_gain_new + 0x00000000 0x154 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.wifi_get_tx_gain_new + 0x00000000 0x112 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.wifi_get_target_power_new + 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.wifi_get_tx_tab + 0x00000000 0xac C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.wifi_set_tx_gain + 0x00000000 0x76 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.bt_get_tx_tab + 0x00000000 0x94 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.bt_set_tx_gain + 0x00000000 0x3c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text.bt_tx_gain_init + 0x00000000 0x3a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .rodata 0x00000000 0x7c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .rodata.CSWTCH.25 + 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .rodata.bt_get_tx_gain_new.str1.4 + 0x00000000 0x23 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .iram1 0x00000000 0x558 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.phy_disable_cca_new + 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.phy_enable_cca_new + 0x00000000 0x26 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.write_gain_mem_new + 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.mac_tx_chan_offset_new + 0x00000000 0x38 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.ram_start_tx_tone_step + 0x00000000 0xa4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.ram_stop_tx_tone + 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.phy_fft_scale_force + 0x00000000 0x3e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text.phy_force_rx_gain + 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.dc_iq_est_high + 0x00000000 0x80 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.rxiq_get_mis_new + 0x00000000 0x15e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.rxiq_cover_mg_mp_new + 0x00000000 0xc4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.rfcal_rxiq_new + 0x00000000 0x88 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.get_rfcal_rxiq_data_new + 0x00000000 0x11c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.pbus_rx_dco_cal_new + 0x00000000 0x2bc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.rxdc_est_min_new + 0x00000000 0x7a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.pbus_rx_dco_cal_1step_new + 0x00000000 0x476 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.get_iq_value + 0x00000000 0x36 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.set_lb_txiq_new + 0x00000000 0x38 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.set_rx_gain_cal_iq_new + 0x00000000 0x26e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.set_rx_gain_cal_dc_new + 0x00000000 0x23e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.ram_bb_gain_index + 0x00000000 0x3e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text.rfrx_gain_index_new + 0x00000000 0x76 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata 0x00000000 0x36 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata.get_rfcal_rxiq_data_new.str1.4 + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata.pbus_rx_dco_cal_1step_new.str1.4 + 0x00000000 0x65 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata.pbus_rx_dco_cal_new.str1.4 + 0x00000000 0x36 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata.rxiq_get_mis_new.str1.4 + 0x00000000 0xc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .rodata.set_rx_gain_cal_iq_new.str1.4 + 0x00000000 0x84 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .iram1 0x00000000 0x4d2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.ram_get_i2c_read_mask + 0x00000000 0x24 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.ram_get_i2c_mst0_mask + 0x00000000 0x24 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.ram_get_i2c_hostid + 0x00000000 0x3a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.ram_chip_i2c_readReg_org + 0x00000000 0x38 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.test_filter_band_set + 0x00000000 0x64 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_get_i2c_data + 0x00000000 0x2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.bias_reg_set + 0x00000000 0x58 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.i2c_rc_cal_set + 0x00000000 0x5e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.adc_rate_set + 0x00000000 0x4e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.dac_rate_set + 0x00000000 0x1c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.i2c_rc_set_reg + 0x00000000 0x64 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_encode_i2c_master + 0x00000000 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_i2c_master_fill + 0x00000000 0xe C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_i2c_master_mem_txcap + 0x00000000 0x2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_i2c_master_cmd_mem_init + 0x00000000 0x1c2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_i2c_master_mem_cfg + 0x00000000 0x1e C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text.phy_i2c_master_command_mem_cfg + 0x00000000 0x2a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .rodata.CSWTCH.55 + 0x00000000 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .rodata.CSWTCH.56 + 0x00000000 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + .text 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .data 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .bss 0x00000000 0x0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txdc_cal_pwdet + 0x00000000 0x372 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txdc_cal_pwdet_init + 0x00000000 0x262 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txdc_cal_new + 0x00000000 0x210 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.bt_txdc_cal_new + 0x00000000 0xa4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txdc_cal_init_new + 0x00000000 0x11c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txiq_cover_new + 0x00000000 0x22c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.rfcal_txiq_new + 0x00000000 0x17a C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.txiq_cal_init_new + 0x00000000 0xa8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.rfcal_txcap_loop + 0x00000000 0x10c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.tx_cap_init_loop + 0x00000000 0x1d8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.tx_pwctrl_init_cal_new + 0x00000000 0x16c C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.tx_pwctrl_init_new + 0x00000000 0xa0 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .text.bt_tx_pwctrl_init_new + 0x00000000 0x1ba C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata 0x00000000 0x8 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata.CSWTCH.166 + 0x00000000 0x3 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata.rfcal_txcap_loop.str1.4 + 0x00000000 0x21 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata.txdc_cal_init_new.str1.4 + 0x00000000 0x26 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata.txdc_cal_pwdet.str1.4 + 0x00000000 0x52 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .rodata.txiq_cover_new.str1.4 + 0x00000000 0x80 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .comment 0x00000000 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + .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.lib_printf.str1.4 + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.lib_printf + 0x00000000 0x90 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.phy_printf.str1.4 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.phy_printf + 0x00000000 0x2e 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 0x2e esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x00000000 0x321 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x00000000 0x190 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_loc 0x00000000 0x14c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x00000000 0x497 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_str 0x00000000 0x312 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_info 0x00000000 0xec C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_abbrev 0x00000000 0xb6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_loclists + 0x00000000 0x2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_line 0x00000000 0x8b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_str 0x00000000 0x116 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_line_str + 0x00000000 0x1ff C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .debug_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .text 0x00000000 0x54 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_info 0x00000000 0x183 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_abbrev 0x00000000 0xee C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_loclists + 0x00000000 0xea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_line 0x00000000 0x14c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_str 0x00000000 0x12a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_line_str + 0x00000000 0x202 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_frame 0x00000000 0x44 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + .text 0x00000000 0xa0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .rodata.str1.4 + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_info 0x00000000 0x1c1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_abbrev 0x00000000 0xf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_loclists + 0x00000000 0x12b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_line 0x00000000 0x1e1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_str 0x00000000 0x145 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_line_str + 0x00000000 0x20d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_frame 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + .text 0x00000000 0x396 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_info 0x00000000 0x759 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_abbrev 0x00000000 0x251 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_loclists + 0x00000000 0x513 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_rnglists + 0x00000000 0x1a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_line 0x00000000 0x8ad C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_str 0x00000000 0x16e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_line_str + 0x00000000 0x270 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_frame 0x00000000 0xa0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .text 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_info 0x00000000 0x97e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_abbrev 0x00000000 0x213 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_loclists + 0x00000000 0x7a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line 0x00000000 0x14d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_str 0x00000000 0x522 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line_str + 0x00000000 0x2e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_frame 0x00000000 0x50 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + .text 0x00000000 0x94 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_info 0x00000000 0x98a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_abbrev 0x00000000 0x246 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_loclists + 0x00000000 0xb7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_line 0x00000000 0x19a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_str 0x00000000 0x559 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_line_str + 0x00000000 0x2dd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_frame 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + .text 0x00000000 0xac C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_info 0x00000000 0xa5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_abbrev 0x00000000 0x253 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_loclists + 0x00000000 0xb6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_line 0x00000000 0x212 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_str 0x00000000 0x5a3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_line_str + 0x00000000 0x2f0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_frame 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .text 0x00000000 0xe2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_info 0x00000000 0xa86 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_abbrev 0x00000000 0x274 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_loclists + 0x00000000 0x1be C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line 0x00000000 0x265 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_str 0x00000000 0x5a2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line_str + 0x00000000 0x2ea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_frame 0x00000000 0x70 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + .text 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_info 0x00000000 0x965 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_abbrev 0x00000000 0x224 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_loclists + 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_line 0x00000000 0x171 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_str 0x00000000 0x520 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_line_str + 0x00000000 0x2e1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .debug_frame 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + .text 0x00000000 0xc0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_info 0x00000000 0x9e6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_abbrev 0x00000000 0x27a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_loclists + 0x00000000 0x129 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_rnglists + 0x00000000 0x1c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_line 0x00000000 0x1f0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_str 0x00000000 0x563 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_line_str + 0x00000000 0x2da C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .debug_frame 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .text 0x00000000 0xfe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_info 0x00000000 0x9c1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_abbrev 0x00000000 0x237 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_loclists + 0x00000000 0x13d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line 0x00000000 0x34c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_str 0x00000000 0x531 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line_str + 0x00000000 0x2ef C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_frame 0x00000000 0x68 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + .text 0x00000000 0x98 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_info 0x00000000 0x9a1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_abbrev 0x00000000 0x213 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_loclists + 0x00000000 0x7f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line 0x00000000 0x247 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_str 0x00000000 0x523 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line_str + 0x00000000 0x2ec C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_frame 0x00000000 0x54 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .text 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_info 0x00000000 0x954 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_abbrev 0x00000000 0x210 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_loclists + 0x00000000 0x7c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line 0x00000000 0xf9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_str 0x00000000 0x528 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line_str + 0x00000000 0x2e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_frame 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + .text 0x00000000 0x9c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_info 0x00000000 0x9aa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_abbrev 0x00000000 0x22d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_loclists + 0x00000000 0x153 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line 0x00000000 0x21e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_str 0x00000000 0x533 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line_str + 0x00000000 0x2f2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_frame 0x00000000 0x64 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .text 0x00000000 0xd2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_info 0x00000000 0x992 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_abbrev 0x00000000 0x25a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_loclists + 0x00000000 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line 0x00000000 0x256 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_str 0x00000000 0x51a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line_str + 0x00000000 0x2e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_frame 0x00000000 0x60 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + .text 0x00000000 0xd0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_info 0x00000000 0x8ef C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_abbrev 0x00000000 0x209 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_loclists + 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line 0x00000000 0x2aa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_str 0x00000000 0x513 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line_str + 0x00000000 0x2e9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_frame 0x00000000 0x38 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .text 0x00000000 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0x103 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xae C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_loclists + 0x00000000 0x39 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x7c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x120 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x27a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x1a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_info 0x00000000 0xfc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_abbrev 0x00000000 0xb8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_loclists + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_line 0x00000000 0xba C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_str 0x00000000 0x123 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_line_str + 0x00000000 0x273 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + .text 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x10f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x8a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x130 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x157 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x113 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x273 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x1c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_info 0x00000000 0xd3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_abbrev 0x00000000 0x80 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_loclists + 0x00000000 0x27 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_line 0x00000000 0xe0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_str 0x00000000 0x10c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_line_str + 0x00000000 0x208 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + .text 0x00000000 0x22 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_info 0x00000000 0xdd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_abbrev 0x00000000 0x99 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_loclists + 0x00000000 0x42 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line 0x00000000 0xdf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_str 0x00000000 0x114 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line_str + 0x00000000 0x276 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + .text 0x00000000 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_info 0x00000000 0x92a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_abbrev 0x00000000 0x207 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_loclists + 0x00000000 0x97 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line 0x00000000 0xf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_str 0x00000000 0x515 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line_str + 0x00000000 0x2e7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_frame 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + .text 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_info 0x00000000 0x143 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_abbrev 0x00000000 0xdb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_loclists + 0x00000000 0x136 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line 0x00000000 0x1c7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_str 0x00000000 0x130 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line_str + 0x00000000 0x276 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_frame 0x00000000 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + .text 0x00000000 0x2e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_info 0x00000000 0xf9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_abbrev 0x00000000 0xaa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_loclists + 0x00000000 0x4b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line 0x00000000 0x117 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_str 0x00000000 0x125 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line_str + 0x00000000 0x276 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + .text 0x00000000 0x2c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_info 0x00000000 0xd2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_abbrev 0x00000000 0x76 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_loclists + 0x00000000 0xa2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line 0x00000000 0xf5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_str 0x00000000 0x114 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line_str + 0x00000000 0x276 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + .text 0x00000000 0x24 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_info 0x00000000 0x101 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_abbrev 0x00000000 0xa1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_loclists + 0x00000000 0x5b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line 0x00000000 0x106 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_str 0x00000000 0x130 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line_str + 0x00000000 0x276 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + .text 0x00000000 0x36 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_info 0x00000000 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_abbrev 0x00000000 0xa9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_loclists + 0x00000000 0x24 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line 0x00000000 0x12c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_str 0x00000000 0x113 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line_str + 0x00000000 0x273 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .sbss 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .text 0x00000000 0x4a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_info 0x00000000 0xff C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_abbrev 0x00000000 0xa6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_loclists + 0x00000000 0x119 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_line 0x00000000 0x104 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_str 0x00000000 0x12d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_line_str + 0x00000000 0x2f0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + .text 0x00000000 0xa8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x18e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xdc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x33 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0xf1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .riscv.attributes + 0x00000000 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x256 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x107 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_loclists + 0x00000000 0x1d6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x31c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0x134 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0x340 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .text 0x00000000 0x64 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_info 0x00000000 0x1a8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_abbrev 0x00000000 0x121 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_loclists + 0x00000000 0x75 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line 0x00000000 0x242 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_str 0x00000000 0x147 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line_str + 0x00000000 0x3d8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + .text 0x00000000 0x60 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_info 0x00000000 0x1e3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_abbrev 0x00000000 0x131 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_loclists + 0x00000000 0x10c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line 0x00000000 0x26d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_str 0x00000000 0x154 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line_str + 0x00000000 0x36d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + .text 0x00000000 0x11e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line 0x00000000 0x13a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line_str + 0x00000000 0xdc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_info 0x00000000 0x33 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_abbrev 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_str 0x00000000 0xf1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .riscv.attributes + 0x00000000 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + .text 0x00000000 0x2930 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata 0x00000000 0x23c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata.str1.4 + 0x00000000 0x3a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .srodata.cst8 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_info 0x00000000 0x280a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_abbrev 0x00000000 0x42d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_loclists + 0x00000000 0x2388 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_rnglists + 0x00000000 0xa0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line 0x00000000 0x4e70 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_str 0x00000000 0xc76 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line_str + 0x00000000 0x414 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_frame 0x00000000 0xb8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + .text 0x00000000 0x2ab4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata 0x00000000 0x23c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata.str1.4 + 0x00000000 0x3a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .srodata.cst8 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_info 0x00000000 0x2aaa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_abbrev 0x00000000 0x49b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_loclists + 0x00000000 0x2431 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_rnglists + 0x00000000 0xab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line 0x00000000 0x516a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_str 0x00000000 0xd55 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line_str + 0x00000000 0x412 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_frame 0x00000000 0x108 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + .text 0x00000000 0x1b8e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata 0x00000000 0x23c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata.str1.4 + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_info 0x00000000 0x2228 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_abbrev 0x00000000 0x44f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_loclists + 0x00000000 0x15cc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_rnglists + 0x00000000 0x60 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line 0x00000000 0x363c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_str 0x00000000 0xc3f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line_str + 0x00000000 0x402 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_frame 0x00000000 0x128 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .text 0x00000000 0x12a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_info 0x00000000 0xbc1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_abbrev 0x00000000 0x257 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_loclists + 0x00000000 0x106 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line 0x00000000 0x391 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_str 0x00000000 0x675 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line_str + 0x00000000 0x377 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_frame 0x00000000 0x6c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + .text 0x00000000 0x3a2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .rodata.str1.4 + 0x00000000 0x701 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .rodata 0x00000000 0x23c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_info 0x00000000 0x980 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_abbrev 0x00000000 0x216 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_loclists + 0x00000000 0xb7b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_line 0x00000000 0xb32 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_str 0x00000000 0x531 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_line_str + 0x00000000 0x2eb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_frame 0x00000000 0x68 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + .text 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_info 0x00000000 0x92 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_abbrev 0x00000000 0x74 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_loclists + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line 0x00000000 0x6d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_str 0x00000000 0xbf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line_str + 0x00000000 0x1b9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + .text 0x00000000 0x22 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_info 0x00000000 0xbe9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_abbrev 0x00000000 0x260 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_loclists + 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_rnglists + 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line 0x00000000 0x134 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_str 0x00000000 0x728 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line_str + 0x00000000 0x2fb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_frame 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + .text 0x00000000 0x90 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .srodata.cst8 0x00000000 0x8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_info 0x00000000 0x1cb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_abbrev 0x00000000 0x145 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_loclists + 0x00000000 0x8f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line 0x00000000 0x1c7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_str 0x00000000 0x173 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line_str + 0x00000000 0x2c1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_frame 0x00000000 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + .text 0x00000000 0x1032 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .rodata.str1.4 + 0x00000000 0x95 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .srodata.cst8 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_info 0x00000000 0x1867 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_abbrev 0x00000000 0x326 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_loclists + 0x00000000 0x1100 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_rnglists + 0x00000000 0x36 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line 0x00000000 0x212a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_str 0x00000000 0x89d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line_str + 0x00000000 0x3c9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_frame 0x00000000 0x9c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + .text 0x00000000 0xc88 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .rodata.str1.4 + 0x00000000 0x81 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .srodata.cst8 0x00000000 0x10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .rodata 0x00000000 0x128 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_info 0x00000000 0x1c96 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_abbrev 0x00000000 0x46e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_loclists + 0x00000000 0x1348 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_rnglists + 0x00000000 0x77 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_line 0x00000000 0x2217 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_str 0x00000000 0x7f8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_line_str + 0x00000000 0x3cc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_frame 0x00000000 0x320 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + .text 0x00000000 0x1b5e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .rodata 0x00000000 0x414 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .rodata.str1.4 + 0x00000000 0x25 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_info 0x00000000 0x2085 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_abbrev 0x00000000 0x3cc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_loclists + 0x00000000 0x1a64 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_rnglists + 0x00000000 0x56 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_line 0x00000000 0x363d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_str 0x00000000 0xb85 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_line_str + 0x00000000 0x404 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .debug_frame 0x00000000 0x104 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .text 0x00000000 0x8c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .rodata.str1.4 + 0x00000000 0x12 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .rodata 0x00000000 0x16c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .sbss 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .sdata 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_info 0x00000000 0xcbe C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_abbrev 0x00000000 0x285 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_loclists + 0x00000000 0x88 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_line 0x00000000 0x1ae C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_str 0x00000000 0x77c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_line_str + 0x00000000 0x369 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .debug_frame 0x00000000 0x68 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + .text 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_info 0x00000000 0xc00 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_abbrev 0x00000000 0x25d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_loclists + 0x00000000 0xa2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line 0x00000000 0x1a7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_str 0x00000000 0x70a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line_str + 0x00000000 0x356 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_frame 0x00000000 0x38 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .text 0x00000000 0x2e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_info 0x00000000 0xbbf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_abbrev 0x00000000 0x247 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_loclists + 0x00000000 0x96 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line 0x00000000 0x13b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_str 0x00000000 0x711 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line_str + 0x00000000 0x356 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_frame 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .rodata 0x00000000 0x101 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_info 0x00000000 0xb9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_abbrev 0x00000000 0x62 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line 0x00000000 0x3e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_str 0x00000000 0x10d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line_str + 0x00000000 0x1fc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + .text 0x00000000 0x5e0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_info 0x00000000 0x4f6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_abbrev 0x00000000 0x186 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_loclists + 0x00000000 0xa83 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_rnglists + 0x00000000 0xf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_line 0x00000000 0x1377 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_str 0x00000000 0x294 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_line_str + 0x00000000 0x1be C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .debug_frame 0x00000000 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + .text 0x00000000 0x536 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .rodata 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_info 0x00000000 0x683 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_abbrev 0x00000000 0x17c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_loclists + 0x00000000 0xa11 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_rnglists + 0x00000000 0xcd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_line 0x00000000 0x110e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_str 0x00000000 0x356 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_line_str + 0x00000000 0x1c8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .debug_frame 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + .text 0x00000000 0x6a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_info 0x00000000 0x221 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_abbrev 0x00000000 0x153 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_loclists + 0x00000000 0x6a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_rnglists + 0x00000000 0x23 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_line 0x00000000 0x277 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_str 0x00000000 0x1a6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_line_str + 0x00000000 0x1cb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + .text 0x00000000 0xa0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_info 0x00000000 0x220 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_abbrev 0x00000000 0x168 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_loclists + 0x00000000 0x10f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_rnglists + 0x00000000 0x33 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_line 0x00000000 0x347 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_str 0x00000000 0x1ca C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_line_str + 0x00000000 0x1cb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + .text 0x00000000 0xa0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_info 0x00000000 0x220 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_abbrev 0x00000000 0x168 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_loclists + 0x00000000 0x10f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_rnglists + 0x00000000 0x33 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_line 0x00000000 0x347 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_str 0x00000000 0x1ca C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_line_str + 0x00000000 0x1cb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + .text 0x00000000 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_info 0x00000000 0x220 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_abbrev 0x00000000 0x14f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_loclists + 0x00000000 0x2d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_rnglists + 0x00000000 0x1d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_line 0x00000000 0x185 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_str 0x00000000 0x1a9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_line_str + 0x00000000 0x1d4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + .text 0x00000000 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_info 0x00000000 0x25d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_abbrev 0x00000000 0x163 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_loclists + 0x00000000 0xb3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_rnglists + 0x00000000 0x2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_line 0x00000000 0x223 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_str 0x00000000 0x239 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_line_str + 0x00000000 0x1d7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .debug_frame 0x00000000 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + .text 0x00000000 0x274 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_info 0x00000000 0x499 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_abbrev 0x00000000 0x182 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_loclists + 0x00000000 0x486 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_rnglists + 0x00000000 0xb8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_line 0x00000000 0x963 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_str 0x00000000 0x351 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_line_str + 0x00000000 0x1d1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .debug_frame 0x00000000 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + +Memory Configuration + +Name Origin Length Attributes +irom_seg 0x42000020 0x007fffe0 xr +sram_seg 0x40800000 0x0006e610 xrw +drom_seg 0x42000020 0x007fffe0 r +lp_ram_seg 0x50000000 0x00003fe8 rw +lp_reserved_seg 0x50003fe8 0x00000018 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32C6 = 0x0 +LOAD CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.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_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_cam/libesp_driver_cam.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_https_server/libesp_https_server.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/fatfs/libfatfs.a +LOAD esp-idf/ieee802154/libieee802154.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/rt/librt.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/wear_levelling/libwear_levelling.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/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD esp-idf/riscv/libriscv.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.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_security/libesp_security.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/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/newlib/libnewlib.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a +LOAD C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libbtbb.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libm.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libnosys.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +START GROUP +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libnosys.a +END GROUP + 0x40000718 PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) + 0x4000071c PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) + 0x40000720 PROVIDE (esprv_int_enable = esprv_intc_int_enable) + 0x40000724 PROVIDE (esprv_int_disable = esprv_intc_int_disable) + 0x40000728 PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60001000 PROVIDE (UART1 = 0x60001000) + 0x60002000 PROVIDE (SPIMEM0 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM1 = 0x60003000) + 0x60004000 PROVIDE (I2C0 = 0x60004000) + [!provide] PROVIDE (UHCI0 = 0x60005000) + [!provide] PROVIDE (RMT = 0x60006000) + [!provide] PROVIDE (RMTMEM = 0x60006400) + [!provide] PROVIDE (LEDC = 0x60007000) + 0x60008000 PROVIDE (TIMERG0 = 0x60008000) + 0x60009000 PROVIDE (TIMERG1 = 0x60009000) + 0x6000a000 PROVIDE (SYSTIMER = 0x6000a000) + [!provide] PROVIDE (TWAI0 = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000c000) + [!provide] PROVIDE (TWAI1 = 0x6000d000) + 0x6000e000 PROVIDE (APB_SARADC = 0x6000e000) + 0x6000f000 PROVIDE (USB_SERIAL_JTAG = 0x6000f000) + [!provide] PROVIDE (INTMTX = 0x60010000) + [!provide] PROVIDE (ATOMIC_LOCKER = 0x60011000) + [!provide] PROVIDE (PCNT = 0x60012000) + [!provide] PROVIDE (SOC_ETM = 0x60013000) + [!provide] PROVIDE (MCPWM0 = 0x60014000) + [!provide] PROVIDE (PARL_IO = 0x60015000) + [!provide] PROVIDE (HINF = 0x60016000) + [!provide] PROVIDE (SLC = 0x60017000) + [!provide] PROVIDE (HOST = 0x60018000) + [!provide] PROVIDE (PVT_MONITOR = 0x60019000) + 0x60080000 PROVIDE (GDMA = 0x60080000) + 0x60081000 PROVIDE (GPSPI2 = 0x60081000) + [!provide] PROVIDE (AES = 0x60088000) + [!provide] PROVIDE (SHA = 0x60089000) + [!provide] PROVIDE (RSA = 0x6008a000) + [!provide] PROVIDE (ECC = 0x6008b000) + [!provide] PROVIDE (DS = 0x6008c000) + [!provide] PROVIDE (HMAC = 0x6008d000) + [!provide] PROVIDE (IO_MUX = 0x60090000) + 0x60091000 PROVIDE (GPIO = 0x60091000) + [!provide] PROVIDE (GPIO_EXT = 0x60091f00) + [!provide] PROVIDE (SDM = 0x60091f00) + [!provide] PROVIDE (GLITCH_FILTER = 0x60091f30) + [!provide] PROVIDE (GPIO_ETM = 0x60091f60) + [!provide] PROVIDE (MEM_MONITOR = 0x60092000) + 0x60093000 PROVIDE (PAU = 0x60093000) + [!provide] PROVIDE (HP_SYSTEM = 0x60095000) + 0x60096000 PROVIDE (PCR = 0x60096000) + [!provide] PROVIDE (TEE = 0x60098000) + [!provide] PROVIDE (HP_APM = 0x60099000) + [!provide] PROVIDE (IEEE802154 = 0x600a3000) + 0x600a9800 PROVIDE (MODEM_SYSCON = 0x600a9800) + 0x600af000 PROVIDE (MODEM_LPCON = 0x600af000) + 0x600b0000 PROVIDE (PMU = 0x600b0000) + 0x600b0400 PROVIDE (LP_CLKRST = 0x600b0400) + 0x600b0800 PROVIDE (EFUSE = 0x600b0800) + 0x600b0c00 PROVIDE (LP_TIMER = 0x600b0c00) + 0x600b1000 PROVIDE (LP_AON = 0x600b1000) + 0x600b1400 PROVIDE (LP_UART = 0x600b1400) + 0x600b1800 PROVIDE (LP_I2C = 0x600b1800) + 0x600b1c00 PROVIDE (LP_WDT = 0x600b1c00) + 0x600b2000 PROVIDE (LP_IO = 0x600b2000) + [!provide] PROVIDE (LP_I2C_ANA_MST = 0x600b2400) + 0x600b2800 PROVIDE (LPPERI = 0x600b2800) + 0x600b2c00 PROVIDE (LP_ANA_PERI = 0x600b2c00) + [!provide] PROVIDE (LP_APM = 0x600b3800) + [!provide] PROVIDE (OTP_DEBUG = 0x600b3c00) + 0x40000018 rtc_get_reset_reason = 0x40000018 + 0x4000001c analog_super_wdt_reset_happened = 0x4000001c + 0x40000020 rtc_get_wakeup_cause = 0x40000020 + 0x40000024 rtc_unhold_all_pads = 0x40000024 + 0x40000028 ets_printf = 0x40000028 + 0x4000002c ets_install_putc1 = 0x4000002c + 0x40000030 ets_install_putc2 = 0x40000030 + 0x40000034 ets_install_uart_printf = 0x40000034 + 0x40000038 ets_install_usb_printf = 0x40000038 + 0x4000003c ets_get_printf_channel = 0x4000003c + 0x40000040 ets_delay_us = 0x40000040 + 0x40000044 ets_get_cpu_frequency = 0x40000044 + 0x40000048 ets_update_cpu_frequency = 0x40000048 + 0x4000004c ets_install_lock = 0x4000004c + 0x40000050 UartRxString = 0x40000050 + 0x40000054 UartGetCmdLn = 0x40000054 + 0x40000058 uart_tx_one_char = 0x40000058 + 0x4000005c uart_tx_one_char2 = 0x4000005c + 0x40000060 uart_rx_one_char = 0x40000060 + 0x40000064 uart_rx_one_char_block = 0x40000064 + 0x40000068 uart_rx_intr_handler = 0x40000068 + 0x4000006c uart_rx_readbuff = 0x4000006c + 0x40000070 uartAttach = 0x40000070 + 0x40000074 uart_tx_flush = 0x40000074 + 0x40000078 uart_tx_wait_idle = 0x40000078 + 0x4000007c uart_div_modify = 0x4000007c + 0x40000080 ets_write_char_uart = 0x40000080 + 0x40000084 uart_tx_switch = 0x40000084 + 0x40000088 roundup2 = 0x40000088 + 0x4000008c multofup = 0x4000008c + 0x40000090 software_reset = 0x40000090 + 0x40000094 software_reset_cpu = 0x40000094 + 0x40000098 ets_clk_assist_debug_clock_enable = 0x40000098 + 0x4000009c clear_super_wdt_reset_flag = 0x4000009c + 0x400000a0 disable_default_watchdog = 0x400000a0 + 0x400000a4 esp_rom_set_rtc_wake_addr = 0x400000a4 + 0x400000a8 esp_rom_get_rtc_wake_addr = 0x400000a8 + 0x400000ac send_packet = 0x400000ac + 0x400000b0 recv_packet = 0x400000b0 + 0x400000b4 GetUartDevice = 0x400000b4 + 0x400000b8 UartDwnLdProc = 0x400000b8 + 0x400000bc GetSecurityInfoProc = 0x400000bc + 0x400000c0 Uart_Init = 0x400000c0 + 0x400000c4 ets_set_user_start = 0x400000c4 + 0x4004fffc ets_rom_layout_p = 0x4004fffc + 0x4087fff8 ets_ops_table_ptr = 0x4087fff8 + 0x4087fffc g_saved_pc = 0x4087fffc + 0x400000c8 mz_adler32 = 0x400000c8 + 0x400000cc mz_free = 0x400000cc + 0x400000d0 tdefl_compress = 0x400000d0 + 0x400000d4 tdefl_compress_buffer = 0x400000d4 + 0x400000d8 tdefl_compress_mem_to_heap = 0x400000d8 + 0x400000dc tdefl_compress_mem_to_mem = 0x400000dc + 0x400000e0 tdefl_compress_mem_to_output = 0x400000e0 + 0x400000e4 tdefl_get_adler32 = 0x400000e4 + 0x400000e8 tdefl_get_prev_return_status = 0x400000e8 + 0x400000ec tdefl_init = 0x400000ec + 0x400000f0 tdefl_write_image_to_png_file_in_memory = 0x400000f0 + 0x400000f4 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f4 + 0x400000f8 tinfl_decompress = 0x400000f8 + 0x400000fc tinfl_decompress_mem_to_callback = 0x400000fc + 0x40000100 tinfl_decompress_mem_to_heap = 0x40000100 + 0x40000104 tinfl_decompress_mem_to_mem = 0x40000104 + 0x40000108 jd_prepare = 0x40000108 + 0x4000010c jd_decomp = 0x4000010c + 0x40000110 esp_rom_spiflash_wait_idle = 0x40000110 + 0x40000114 esp_rom_spiflash_write_encrypted = 0x40000114 + 0x40000118 esp_rom_spiflash_write_encrypted_dest = 0x40000118 + 0x4000011c esp_rom_spiflash_write_encrypted_enable = 0x4000011c + 0x40000120 esp_rom_spiflash_write_encrypted_disable = 0x40000120 + 0x40000124 esp_rom_spiflash_erase_chip = 0x40000124 + 0x40000128 _esp_rom_spiflash_erase_sector = 0x40000128 + 0x4000012c _esp_rom_spiflash_erase_block = 0x4000012c + 0x40000130 _esp_rom_spiflash_write = 0x40000130 + 0x40000134 _esp_rom_spiflash_read = 0x40000134 + 0x40000138 _esp_rom_spiflash_unlock = 0x40000138 + 0x4000013c _SPIEraseArea = 0x4000013c + 0x40000140 _SPI_write_enable = 0x40000140 + 0x40000144 esp_rom_spiflash_erase_sector = 0x40000144 + 0x40000148 esp_rom_spiflash_erase_block = 0x40000148 + 0x4000014c esp_rom_spiflash_write = 0x4000014c + 0x40000150 esp_rom_spiflash_read = 0x40000150 + 0x40000154 esp_rom_spiflash_unlock = 0x40000154 + 0x40000158 SPIEraseArea = 0x40000158 + 0x4000015c SPI_write_enable = 0x4000015c + 0x40000160 esp_rom_spiflash_config_param = 0x40000160 + 0x40000164 esp_rom_spiflash_read_user_cmd = 0x40000164 + 0x40000168 esp_rom_spiflash_select_qio_pins = 0x40000168 + 0x4000016c esp_rom_spi_flash_auto_sus_res = 0x4000016c + 0x40000170 esp_rom_spi_flash_send_resume = 0x40000170 + 0x40000174 esp_rom_spi_flash_update_id = 0x40000174 + 0x40000178 esp_rom_spiflash_config_clk = 0x40000178 + 0x4000017c esp_rom_spiflash_config_readmode = 0x4000017c + 0x40000180 esp_rom_spiflash_read_status = 0x40000180 + 0x40000184 esp_rom_spiflash_read_statushigh = 0x40000184 + 0x40000188 esp_rom_spiflash_write_status = 0x40000188 + 0x4000018c spi_cache_mode_switch = 0x4000018c + 0x40000190 spi_common_set_dummy_output = 0x40000190 + 0x40000194 spi_common_set_flash_cs_timing = 0x40000194 + 0x40000198 esp_rom_spi_set_address_bit_len = 0x40000198 + 0x4000019c SPILock = 0x4000019c + 0x400001a0 SPIMasterReadModeCnfig = 0x400001a0 + 0x400001a4 SPI_Common_Command = 0x400001a4 + 0x400001a8 SPI_WakeUp = 0x400001a8 + 0x400001ac SPI_block_erase = 0x400001ac + 0x400001b0 SPI_chip_erase = 0x400001b0 + 0x400001b4 SPI_init = 0x400001b4 + 0x400001b8 SPI_page_program = 0x400001b8 + 0x400001bc SPI_read_data = 0x400001bc + 0x400001c0 SPI_sector_erase = 0x400001c0 + 0x400001c4 SelectSpiFunction = 0x400001c4 + 0x400001c8 SetSpiDrvs = 0x400001c8 + 0x400001cc Wait_SPI_Idle = 0x400001cc + 0x400001d0 spi_dummy_len_fix = 0x400001d0 + 0x400001d4 Disable_QMode = 0x400001d4 + 0x400001d8 Enable_QMode = 0x400001d8 + 0x400001dc spi_flash_attach = 0x400001dc + 0x400001e0 spi_flash_get_chip_size = 0x400001e0 + 0x400001e4 spi_flash_guard_set = 0x400001e4 + 0x400001e8 spi_flash_guard_get = 0x400001e8 + 0x400001ec spi_flash_read_encrypted = 0x400001ec + 0x4087fff0 rom_spiflash_legacy_funcs = 0x4087fff0 + 0x4087ffec rom_spiflash_legacy_data = 0x4087ffec + 0x4087fff4 g_flash_guard_ops = 0x4087fff4 + 0x40000278 esp_rom_spiflash_write_disable = 0x40000278 + 0x40000628 Cache_Get_ICache_Line_Size = 0x40000628 + 0x4000062c Cache_Get_Mode = 0x4000062c + 0x40000630 Cache_Address_Through_Cache = 0x40000630 + 0x40000634 ROM_Boot_Cache_Init = 0x40000634 + 0x40000638 MMU_Set_Page_Mode = 0x40000638 + 0x4000063c MMU_Get_Page_Mode = 0x4000063c + 0x40000640 Cache_Invalidate_ICache_Items = 0x40000640 + 0x40000644 Cache_Op_Addr = 0x40000644 + 0x40000648 Cache_Invalidate_Addr = 0x40000648 + 0x4000064c Cache_Invalidate_ICache_All = 0x4000064c + 0x40000650 Cache_Mask_All = 0x40000650 + 0x40000654 Cache_UnMask_Dram0 = 0x40000654 + 0x40000658 Cache_Suspend_ICache_Autoload = 0x40000658 + 0x4000065c Cache_Resume_ICache_Autoload = 0x4000065c + 0x40000660 Cache_Start_ICache_Preload = 0x40000660 + 0x40000664 Cache_ICache_Preload_Done = 0x40000664 + 0x40000668 Cache_End_ICache_Preload = 0x40000668 + 0x4000066c Cache_Config_ICache_Autoload = 0x4000066c + 0x40000670 Cache_Enable_ICache_Autoload = 0x40000670 + 0x40000674 Cache_Disable_ICache_Autoload = 0x40000674 + 0x40000678 Cache_Enable_ICache_PreLock = 0x40000678 + 0x4000067c Cache_Disable_ICache_PreLock = 0x4000067c + 0x40000680 Cache_Lock_ICache_Items = 0x40000680 + 0x40000684 Cache_Unlock_ICache_Items = 0x40000684 + 0x40000688 Cache_Lock_Addr = 0x40000688 + 0x4000068c Cache_Unlock_Addr = 0x4000068c + 0x40000690 Cache_Disable_ICache = 0x40000690 + 0x40000694 Cache_Enable_ICache = 0x40000694 + 0x40000698 Cache_Suspend_ICache = 0x40000698 + 0x4000069c Cache_Resume_ICache = 0x4000069c + 0x400006a0 Cache_Freeze_ICache_Enable = 0x400006a0 + 0x400006a4 Cache_Freeze_ICache_Disable = 0x400006a4 + 0x400006a8 Cache_Set_IDROM_MMU_Size = 0x400006a8 + 0x400006ac Cache_Get_IROM_MMU_End = 0x400006ac + 0x400006b0 Cache_Get_DROM_MMU_End = 0x400006b0 + 0x400006b4 Cache_MMU_Init = 0x400006b4 + 0x400006b8 Cache_MSPI_MMU_Set = 0x400006b8 + 0x400006bc Cache_Travel_Tag_Memory = 0x400006bc + 0x400006c0 Cache_Get_Virtual_Addr = 0x400006c0 + 0x4087ffcc rom_cache_op_cb = 0x4087ffcc + 0x4087ffc8 rom_cache_internal_table_ptr = 0x4087ffc8 + 0x400006c4 ets_clk_get_xtal_freq = 0x400006c4 + 0x400006c8 ets_clk_get_cpu_freq = 0x400006c8 + 0x400006cc ets_clk_apb_wait_ready = 0x400006cc + 0x400006d0 ets_clk_mspi_apb_wait_ready = 0x400006d0 + 0x400006d4 gpio_input_get = 0x400006d4 + 0x400006d8 gpio_matrix_in = 0x400006d8 + 0x400006dc gpio_matrix_out = 0x400006dc + 0x400006e8 gpio_output_set = 0x400006e8 + 0x400006ec gpio_pad_hold = 0x400006ec + 0x400006f0 gpio_pad_input_disable = 0x400006f0 + 0x400006f4 gpio_pad_input_enable = 0x400006f4 + 0x400006f8 gpio_pad_pulldown = 0x400006f8 + 0x400006fc gpio_pad_pullup = 0x400006fc + 0x40000700 gpio_pad_select_gpio = 0x40000700 + 0x40000704 gpio_pad_set_drv = 0x40000704 + 0x40000708 gpio_pad_unhold = 0x40000708 + 0x4000070c gpio_pin_wakeup_disable = 0x4000070c + 0x40000710 gpio_pin_wakeup_enable = 0x40000710 + 0x40000714 gpio_bypass_matrix_in = 0x40000714 + 0x40000718 esprv_intc_int_set_priority = 0x40000718 + 0x4000071c esprv_intc_int_set_threshold = 0x4000071c + 0x40000720 esprv_intc_int_enable = 0x40000720 + 0x40000724 esprv_intc_int_disable = 0x40000724 + 0x40000728 esprv_intc_int_set_type = 0x40000728 + [!provide] PROVIDE (intr_handler_set = 0x4000072c) + 0x40000730 intr_matrix_set = 0x40000730 + 0x40000734 ets_intr_lock = 0x40000734 + 0x40000738 ets_intr_unlock = 0x40000738 + 0x4000073c ets_isr_attach = 0x4000073c + 0x40000740 ets_isr_mask = 0x40000740 + 0x40000744 ets_isr_unmask = 0x40000744 + 0x40000748 md5_vector = 0x40000748 + 0x4000074c MD5Init = 0x4000074c + 0x40000750 MD5Update = 0x40000750 + 0x40000754 MD5Final = 0x40000754 + 0x40000758 crc32_le = 0x40000758 + 0x4000075c crc16_le = 0x4000075c + 0x40000760 crc8_le = 0x40000760 + 0x40000764 crc32_be = 0x40000764 + 0x40000768 crc16_be = 0x40000768 + 0x4000076c crc8_be = 0x4000076c + 0x40000770 esp_crc8 = 0x40000770 + 0x40000774 ets_sha_enable = 0x40000774 + 0x40000778 ets_sha_disable = 0x40000778 + 0x4000077c ets_sha_get_state = 0x4000077c + 0x40000780 ets_sha_init = 0x40000780 + 0x40000784 ets_sha_process = 0x40000784 + 0x40000788 ets_sha_starts = 0x40000788 + 0x4000078c ets_sha_update = 0x4000078c + 0x40000790 ets_sha_finish = 0x40000790 + 0x40000794 ets_sha_clone = 0x40000794 + 0x40000798 ets_hmac_enable = 0x40000798 + 0x4000079c ets_hmac_disable = 0x4000079c + 0x400007a0 ets_hmac_calculate_message = 0x400007a0 + 0x400007a4 ets_hmac_calculate_downstream = 0x400007a4 + 0x400007a8 ets_hmac_invalidate_downstream = 0x400007a8 + 0x400007ac ets_jtag_enable_temporarily = 0x400007ac + 0x400007b0 ets_aes_enable = 0x400007b0 + 0x400007b4 ets_aes_disable = 0x400007b4 + 0x400007b8 ets_aes_setkey = 0x400007b8 + 0x400007bc ets_aes_block = 0x400007bc + 0x400007c0 ets_aes_setkey_dec = 0x400007c0 + 0x400007c4 ets_aes_setkey_enc = 0x400007c4 + 0x400007c8 ets_bigint_enable = 0x400007c8 + 0x400007cc ets_bigint_disable = 0x400007cc + 0x400007d0 ets_bigint_multiply = 0x400007d0 + 0x400007d4 ets_bigint_modmult = 0x400007d4 + 0x400007d8 ets_bigint_modexp = 0x400007d8 + 0x400007dc ets_bigint_wait_finish = 0x400007dc + 0x400007e0 ets_bigint_getz = 0x400007e0 + 0x400007e4 ets_ds_enable = 0x400007e4 + 0x400007e8 ets_ds_disable = 0x400007e8 + 0x400007ec ets_ds_start_sign = 0x400007ec + 0x400007f0 ets_ds_is_busy = 0x400007f0 + 0x400007f4 ets_ds_finish_sign = 0x400007f4 + 0x400007f8 ets_ds_encrypt_params = 0x400007f8 + 0x400007fc ets_mgf1_sha256 = 0x400007fc + 0x4004fff8 crc32_le_table_ptr = 0x4004fff8 + 0x4004fff4 crc16_le_table_ptr = 0x4004fff4 + 0x4004fff0 crc8_le_table_ptr = 0x4004fff0 + 0x4004ffec crc32_be_table_ptr = 0x4004ffec + 0x4004ffe8 crc16_be_table_ptr = 0x4004ffe8 + 0x4004ffe4 crc8_be_table_ptr = 0x4004ffe4 + 0x40000800 ets_efuse_read = 0x40000800 + 0x40000804 ets_efuse_program = 0x40000804 + 0x40000808 ets_efuse_clear_program_registers = 0x40000808 + 0x4000080c ets_efuse_write_key = 0x4000080c + 0x40000810 ets_efuse_get_read_register_address = 0x40000810 + 0x40000814 ets_efuse_get_key_purpose = 0x40000814 + 0x40000818 ets_efuse_key_block_unused = 0x40000818 + 0x4000081c ets_efuse_find_unused_key_block = 0x4000081c + 0x40000820 ets_efuse_rs_calculate = 0x40000820 + 0x40000824 ets_efuse_count_unused_key_blocks = 0x40000824 + 0x40000828 ets_efuse_secure_boot_enabled = 0x40000828 + 0x4000082c ets_efuse_secure_boot_aggressive_revoke_enabled = 0x4000082c + 0x40000830 ets_efuse_cache_encryption_enabled = 0x40000830 + 0x40000834 ets_efuse_download_modes_disabled = 0x40000834 + 0x40000838 ets_efuse_find_purpose = 0x40000838 + 0x4000083c ets_efuse_force_send_resume = 0x4000083c + 0x40000840 ets_efuse_get_flash_delay_us = 0x40000840 + 0x40000844 ets_efuse_get_mac = 0x40000844 + 0x40000848 ets_efuse_get_uart_print_control = 0x40000848 + 0x4000084c ets_efuse_direct_boot_mode_disabled = 0x4000084c + 0x40000850 ets_efuse_security_download_modes_enabled = 0x40000850 + 0x40000854 ets_efuse_set_timing = 0x40000854 + 0x40000858 ets_efuse_jtag_disabled = 0x40000858 + 0x4000085c ets_efuse_usb_print_is_disabled = 0x4000085c + 0x40000860 ets_efuse_usb_download_mode_disabled = 0x40000860 + 0x40000864 ets_efuse_usb_device_disabled = 0x40000864 + 0x40000868 ets_efuse_secure_boot_fast_wake_enabled = 0x40000868 + 0x4000086c ets_emsa_pss_verify = 0x4000086c + 0x40000870 ets_rsa_pss_verify = 0x40000870 + 0x40000874 ets_secure_boot_verify_bootloader_with_keys = 0x40000874 + 0x40000878 ets_secure_boot_verify_signature = 0x40000878 + 0x4000087c ets_secure_boot_read_key_digests = 0x4000087c + 0x40000880 ets_secure_boot_revoke_public_key_digest = 0x40000880 + 0x40000a80 usb_serial_device_rx_one_char = 0x40000a80 + 0x40000a84 usb_serial_device_rx_one_char_block = 0x40000a84 + 0x40000a88 usb_serial_device_tx_flush = 0x40000a88 + 0x40000a8c usb_serial_device_tx_one_char = 0x40000a8c + 0x40000a90 lldesc_build_chain = 0x40000a90 + 0x40000a94 sip_after_tx_complete = 0x40000a94 + 0x40000a98 sip_alloc_to_host_evt = 0x40000a98 + 0x40000a9c sip_download_begin = 0x40000a9c + 0x40000aa0 sip_get_ptr = 0x40000aa0 + 0x40000aa4 sip_get_state = 0x40000aa4 + 0x40000aa8 sip_init_attach = 0x40000aa8 + 0x40000aac sip_install_rx_ctrl_cb = 0x40000aac + 0x40000ab0 sip_install_rx_data_cb = 0x40000ab0 + 0x40000ab4 sip_is_active = 0x40000ab4 + 0x40000ab8 sip_post_init = 0x40000ab8 + 0x40000abc sip_reclaim_from_host_cmd = 0x40000abc + 0x40000ac0 sip_reclaim_tx_data_pkt = 0x40000ac0 + 0x40000ac4 sip_send = 0x40000ac4 + 0x40000ac8 sip_to_host_chain_append = 0x40000ac8 + 0x40000acc sip_to_host_evt_send_done = 0x40000acc + 0x40000ad0 slc_add_credits = 0x40000ad0 + 0x40000ad4 slc_enable = 0x40000ad4 + 0x40000ad8 slc_from_host_chain_fetch = 0x40000ad8 + 0x40000adc slc_from_host_chain_recycle = 0x40000adc + 0x40000ae0 slc_has_pkt_to_host = 0x40000ae0 + 0x40000ae4 slc_init_attach = 0x40000ae4 + 0x40000ae8 slc_init_credit = 0x40000ae8 + 0x40000aec slc_reattach = 0x40000aec + 0x40000af0 slc_send_to_host_chain = 0x40000af0 + 0x40000af4 slc_set_host_io_max_window = 0x40000af4 + 0x40000af8 slc_to_host_chain_recycle = 0x40000af8 + 0x40000758 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) + 0x40000700 PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x400006fc PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + 0x40000704 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x400006d8 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x400006dc PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char2) + [!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) + 0x40000074 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40000058 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x40000078 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + 0x40000060 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_putc = ets_write_char_uart) + 0x4000074c PROVIDE (esp_rom_md5_init = MD5Init) + 0x40000750 PROVIDE (esp_rom_md5_update = MD5Update) + 0x40000754 PROVIDE (esp_rom_md5_final = MD5Final) + 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) + 0x40000094 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40000028 PROVIDE (esp_rom_printf = ets_printf) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x40000040 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x40000730 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40000044 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40000048 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x400009f4 __adddf3 = 0x400009f4 + 0x400009f8 __addsf3 = 0x400009f8 + 0x400009fc __eqdf2 = 0x400009fc + 0x40000a00 __eqsf2 = 0x40000a00 + 0x40000a04 __extendsfdf2 = 0x40000a04 + 0x40000a08 __fixdfdi = 0x40000a08 + 0x40000a0c __fixdfsi = 0x40000a0c + 0x40000a10 __fixsfdi = 0x40000a10 + 0x40000a14 __fixsfsi = 0x40000a14 + 0x40000a18 __fixunsdfsi = 0x40000a18 + 0x40000a1c __fixunssfdi = 0x40000a1c + 0x40000a20 __fixunssfsi = 0x40000a20 + 0x40000a24 __floatdidf = 0x40000a24 + 0x40000a28 __floatdisf = 0x40000a28 + 0x40000a2c __floatsidf = 0x40000a2c + 0x40000a30 __floatsisf = 0x40000a30 + 0x40000a34 __floatundidf = 0x40000a34 + 0x40000a38 __floatundisf = 0x40000a38 + 0x40000a3c __floatunsidf = 0x40000a3c + 0x40000a40 __floatunsisf = 0x40000a40 + 0x40000a44 __gedf2 = 0x40000a44 + 0x40000a48 __gesf2 = 0x40000a48 + 0x40000a4c __gtdf2 = 0x40000a4c + 0x40000a50 __gtsf2 = 0x40000a50 + 0x40000a54 __ledf2 = 0x40000a54 + 0x40000a58 __lesf2 = 0x40000a58 + 0x40000a5c __ltdf2 = 0x40000a5c + 0x40000a60 __ltsf2 = 0x40000a60 + 0x40000a64 __muldf3 = 0x40000a64 + 0x40000a68 __mulsf3 = 0x40000a68 + 0x40000a6c __nedf2 = 0x40000a6c + 0x40000a70 __nesf2 = 0x40000a70 + 0x40000a74 __subdf3 = 0x40000a74 + 0x40000a78 __subsf3 = 0x40000a78 + 0x40000a7c __truncdfsf2 = 0x40000a7c + 0x40000884 __absvdi2 = 0x40000884 + 0x40000888 __absvsi2 = 0x40000888 + 0x40000894 __addvdi3 = 0x40000894 + 0x40000898 __addvsi3 = 0x40000898 + 0x4000089c __ashldi3 = 0x4000089c + 0x400008a0 __ashrdi3 = 0x400008a0 + 0x400008a4 __bswapdi2 = 0x400008a4 + 0x400008a8 __bswapsi2 = 0x400008a8 + 0x400008ac __clear_cache = 0x400008ac + 0x400008b0 __clrsbdi2 = 0x400008b0 + 0x400008b4 __clrsbsi2 = 0x400008b4 + 0x400008b8 __clzdi2 = 0x400008b8 + 0x400008bc __clzsi2 = 0x400008bc + 0x400008c0 __cmpdi2 = 0x400008c0 + 0x400008c4 __ctzdi2 = 0x400008c4 + 0x400008c8 __ctzsi2 = 0x400008c8 + 0x400008cc __divdc3 = 0x400008cc + 0x400008d0 __divdf3 = 0x400008d0 + 0x400008d4 __divdi3 = 0x400008d4 + 0x400008d8 __divsc3 = 0x400008d8 + 0x400008dc __divsf3 = 0x400008dc + 0x400008e0 __divsi3 = 0x400008e0 + 0x400008f0 __ffsdi2 = 0x400008f0 + 0x400008f4 __ffssi2 = 0x400008f4 + 0x40000934 __gcc_bcmp = 0x40000934 + 0x40000950 __lshrdi3 = 0x40000950 + 0x4000095c __moddi3 = 0x4000095c + 0x40000960 __modsi3 = 0x40000960 + 0x40000964 __muldc3 = 0x40000964 + 0x4000096c __muldi3 = 0x4000096c + 0x40000970 __mulsc3 = 0x40000970 + 0x40000978 __mulsi3 = 0x40000978 + 0x4000097c __mulvdi3 = 0x4000097c + 0x40000980 __mulvsi3 = 0x40000980 + 0x40000988 __negdf2 = 0x40000988 + 0x4000098c __negdi2 = 0x4000098c + 0x40000990 __negsf2 = 0x40000990 + 0x40000994 __negvdi2 = 0x40000994 + 0x40000998 __negvsi2 = 0x40000998 + 0x400009a0 __paritysi2 = 0x400009a0 + 0x400009a4 __popcountdi2 = 0x400009a4 + 0x400009a8 __popcountsi2 = 0x400009a8 + 0x400009ac __powidf2 = 0x400009ac + 0x400009b0 __powisf2 = 0x400009b0 + 0x400009bc __subvdi3 = 0x400009bc + 0x400009c0 __subvsi3 = 0x400009c0 + 0x400009c8 __ucmpdi2 = 0x400009c8 + 0x400009cc __udivdi3 = 0x400009cc + 0x400009d0 __udivmoddi4 = 0x400009d0 + 0x400009d4 __udivsi3 = 0x400009d4 + 0x400009d8 __udiv_w_sdiv = 0x400009d8 + 0x400009dc __umoddi3 = 0x400009dc + 0x400009e0 __umodsi3 = 0x400009e0 + 0x400009e4 __unorddf2 = 0x400009e4 + 0x400009e8 __unordsf2 = 0x400009e8 + 0x400009ec __extenddftf2 = 0x400009ec + 0x400009f0 __trunctfdf2 = 0x400009f0 + 0x4000039c wdt_hal_config_stage = 0x4000039c + 0x400003a0 wdt_hal_write_protect_disable = 0x400003a0 + 0x400003a4 wdt_hal_write_protect_enable = 0x400003a4 + 0x400003a8 wdt_hal_enable = 0x400003a8 + 0x400003ac wdt_hal_disable = 0x400003ac + 0x400003b0 wdt_hal_handle_intr = 0x400003b0 + 0x400003b4 wdt_hal_feed = 0x400003b4 + 0x400003b8 wdt_hal_set_flashboot_en = 0x400003b8 + 0x400003bc wdt_hal_is_enabled = 0x400003bc + 0x400003c8 systimer_hal_set_tick_rate_ops = 0x400003c8 + 0x400003cc systimer_hal_get_counter_value = 0x400003cc + 0x400003d0 systimer_hal_get_time = 0x400003d0 + 0x400003d4 systimer_hal_set_alarm_target = 0x400003d4 + 0x400003d8 systimer_hal_set_alarm_period = 0x400003d8 + 0x400003dc systimer_hal_get_alarm_value = 0x400003dc + 0x400003e0 systimer_hal_enable_alarm_int = 0x400003e0 + 0x400003e4 systimer_hal_on_apb_freq_update = 0x400003e4 + 0x400003e8 systimer_hal_counter_value_advance = 0x400003e8 + 0x400003ec systimer_hal_enable_counter = 0x400003ec + 0x400003f0 systimer_hal_select_alarm_mode = 0x400003f0 + 0x400003f4 systimer_hal_connect_alarm_counter = 0x400003f4 + 0x400003f8 systimer_hal_counter_can_stall_by_cpu = 0x400003f8 + 0x40000010 _rom_chip_id = 0x40000010 + 0x40000014 _rom_eco_version = 0x40000014 + 0x40001104 phy_param_addr = 0x40001104 + 0x40001108 phy_get_romfuncs = 0x40001108 + 0x4000110c chip761_phyrom_version = 0x4000110c + 0x40001110 chip761_phyrom_version_num = 0x40001110 + 0x40001114 get_rc_dout = 0x40001114 + 0x40001118 rc_cal = 0x40001118 + 0x4000111c rom_enter_critical_phy = 0x4000111c + 0x40001120 rom_exit_critical_phy = 0x40001120 + 0x40001124 rom_set_chan_cal_interp = 0x40001124 + 0x40001128 rom_loopback_mode_en = 0x40001128 + 0x4000112c rom_bb_bss_cbw40 = 0x4000112c + 0x40001130 abs_temp = 0x40001130 + 0x40001134 get_data_sat = 0x40001134 + 0x40001138 phy_byte_to_word = 0x40001138 + 0x4000113c set_chan_reg = 0x4000113c + 0x40001140 i2c_master_reset = 0x40001140 + 0x40001144 rom_set_chan_freq_sw_start = 0x40001144 + 0x40001148 freq_module_resetn = 0x40001148 + 0x4000114c freq_chan_en_sw = 0x4000114c + 0x40001150 write_chan_freq = 0x40001150 + 0x40001154 get_freq_mem_param = 0x40001154 + 0x40001158 get_freq_mem_addr = 0x40001158 + 0x4000115c bt_txpwr_freq = 0x4000115c + 0x40001160 wr_rf_freq_mem = 0x40001160 + 0x40001164 read_rf_freq_mem = 0x40001164 + 0x40001168 freq_i2c_mem_write = 0x40001168 + 0x4000116c freq_num_get_data = 0x4000116c + 0x40001170 freq_i2c_num_addr = 0x40001170 + 0x40001174 freq_i2c_write_set = 0x40001174 + 0x40001178 pll_dac_mem_update = 0x40001178 + 0x4000117c pll_cap_mem_update = 0x4000117c + 0x40001180 get_rf_freq_cap = 0x40001180 + 0x40001184 get_rf_freq_init = 0x40001184 + 0x40001188 phy_en_hw_set_freq = 0x40001188 + 0x4000118c phy_dis_hw_set_freq = 0x4000118c + 0x40001190 rom_pwdet_sar2_init = 0x40001190 + 0x40001194 rom_en_pwdet = 0x40001194 + 0x40001198 rom_get_sar_sig_ref = 0x40001198 + 0x4000119c rom_pwdet_tone_start = 0x4000119c + 0x400011a0 rom_pwdet_wait_idle = 0x400011a0 + 0x400011a4 rom_read_sar_dout = 0x400011a4 + 0x400011a8 get_tone_sar_dout = 0x400011a8 + 0x400011ac get_fm_sar_dout = 0x400011ac + 0x400011b0 txtone_linear_pwr = 0x400011b0 + 0x400011b4 linear_to_db = 0x400011b4 + 0x400011b8 get_power_db = 0x400011b8 + 0x400011bc meas_tone_pwr_db = 0x400011bc + 0x400011c0 pkdet_vol_start = 0x400011c0 + 0x400011c4 read_sar2_code = 0x400011c4 + 0x400011c8 get_sar2_vol = 0x400011c8 + 0x400011cc get_pll_vol = 0x400011cc + 0x400011d0 tx_pwctrl_bg_init = 0x400011d0 + 0x400011d4 phy_pwdet_always_en = 0x400011d4 + 0x400011d8 phy_pwdet_onetime_en = 0x400011d8 + 0x400011dc esp_tx_state_out_rom = 0x400011dc + 0x400011e0 ant_dft_cfg_rom = 0x400011e0 + 0x400011e4 ant_wifitx_cfg_rom = 0x400011e4 + 0x400011e8 ant_wifirx_cfg_rom = 0x400011e8 + 0x400011ec ant_bttx_cfg_rom = 0x400011ec + 0x400011f0 ant_btrx_cfg_rom = 0x400011f0 + 0x400011f4 phy_chan_dump_cfg_rom = 0x400011f4 + 0x400011f8 phy_enable_low_rate = 0x400011f8 + 0x400011fc phy_disable_low_rate = 0x400011fc + 0x40001200 phy_is_low_rate_enabled = 0x40001200 + 0x40001204 phy_dig_reg_backup_rom = 0x40001204 + 0x40001208 phy_chan_filt_set_rom = 0x40001208 + 0x4000120c phy_rx11blr_cfg = 0x4000120c + 0x40001210 set_cca_rom = 0x40001210 + 0x40001214 set_rx_sense_rom = 0x40001214 + 0x40001218 rx_gain_force_rom = 0x40001218 + 0x4000121c rom_rfpll_set_freq = 0x4000121c + 0x40001220 mhz2ieee = 0x40001220 + 0x40001224 chan_to_freq = 0x40001224 + 0x40001228 restart_cal = 0x40001228 + 0x4000122c write_rfpll_sdm = 0x4000122c + 0x40001230 wait_rfpll_cal_end = 0x40001230 + 0x40001234 set_rf_freq_offset = 0x40001234 + 0x40001238 set_rfpll_freq = 0x40001238 + 0x4000123c set_channel_rfpll_freq = 0x4000123c + 0x40001240 rfpll_cap_correct = 0x40001240 + 0x40001244 rfpll_cap_init_cal = 0x40001244 + 0x40001248 write_pll_cap = 0x40001248 + 0x4000124c read_pll_cap = 0x4000124c + 0x40001250 chip_v7_set_chan_ana = 0x40001250 + 0x40001254 freq_set_reg = 0x40001254 + 0x40001258 gen_rx_gain_table = 0x40001258 + 0x4000125c bt_txdc_cal = 0x4000125c + 0x40001260 bt_txiq_cal = 0x40001260 + 0x40001264 txiq_cal_init = 0x40001264 + 0x40001268 txdc_cal_init = 0x40001268 + 0x4000126c txdc_cal = 0x4000126c + 0x40001270 txiq_get_mis_pwr = 0x40001270 + 0x40001274 txiq_cover = 0x40001274 + 0x40001278 rfcal_txiq = 0x40001278 + 0x4000127c get_power_atten = 0x4000127c + 0x40001280 pwdet_ref_code = 0x40001280 + 0x40001284 pwdet_code_cal = 0x40001284 + 0x40001288 rfcal_txcap = 0x40001288 + 0x4000128c tx_cap_init = 0x4000128c + 0x40001290 rfcal_pwrctrl = 0x40001290 + 0x40001294 tx_pwctrl_init_cal = 0x40001294 + 0x40001298 tx_pwctrl_init = 0x40001298 + 0x4000129c bt_tx_pwctrl_init = 0x4000129c + 0x400012a0 rom_i2c_enter_critical = 0x400012a0 + 0x400012a4 rom_i2c_exit_critical = 0x400012a4 + 0x400012a8 rom_get_i2c_read_mask = 0x400012a8 + 0x400012ac rom_get_i2c_mst0_mask = 0x400012ac + 0x400012b0 rom_get_i2c_hostid = 0x400012b0 + 0x400012b4 rom_chip_i2c_readReg_org = 0x400012b4 + 0x400012b8 rom_chip_i2c_readReg = 0x400012b8 + 0x400012c0 rom_chip_i2c_writeReg = 0x400012c0 + 0x400012d0 rom_set_txcap_reg = 0x400012d0 + 0x400012d4 i2c_paral_set_mst0 = 0x400012d4 + 0x400012d8 i2c_paral_set_read = 0x400012d8 + 0x400012dc i2c_paral_read = 0x400012dc + 0x400012e0 i2c_paral_write = 0x400012e0 + 0x400012e4 i2c_paral_write_num = 0x400012e4 + 0x400012e8 i2c_paral_write_mask = 0x400012e8 + 0x400012ec i2c_sar2_init_code = 0x400012ec + 0x400012f0 rom_pbus_force_mode = 0x400012f0 + 0x400012f4 rom_pbus_rd_addr = 0x400012f4 + 0x400012f8 rom_pbus_rd_shift = 0x400012f8 + 0x400012fc rom_pbus_force_test = 0x400012fc + 0x40001300 rom_pbus_rd = 0x40001300 + 0x40001304 rom_pbus_set_rxgain = 0x40001304 + 0x40001308 rom_pbus_xpd_rx_off = 0x40001308 + 0x4000130c rom_pbus_xpd_rx_on = 0x4000130c + 0x40001310 rom_pbus_xpd_tx_off = 0x40001310 + 0x40001314 rom_pbus_xpd_tx_on = 0x40001314 + 0x40001318 rom_set_loopback_gain = 0x40001318 + 0x4000131c rom_txcal_debuge_mode = 0x4000131c + 0x40001320 pbus_debugmode = 0x40001320 + 0x40001324 pbus_workmode = 0x40001324 + 0x40001328 pbus_set_dco = 0x40001328 + 0x4000132c txcal_work_mode = 0x4000132c + 0x40001330 rom_start_tx_tone_step = 0x40001330 + 0x40001334 rom_stop_tx_tone = 0x40001334 + 0x40001338 disable_agc = 0x40001338 + 0x4000133c enable_agc = 0x4000133c + 0x40001340 phy_disable_cca = 0x40001340 + 0x40001344 phy_enable_cca = 0x40001344 + 0x40001348 write_gain_mem = 0x40001348 + 0x4000134c bb_bss_cbw40_dig = 0x4000134c + 0x40001350 cbw2040_cfg = 0x40001350 + 0x40001354 mac_tx_chan_offset = 0x40001354 + 0x40001358 tx_paon_set = 0x40001358 + 0x4000135c pwdet_reg_init = 0x4000135c + 0x40001360 i2cmst_reg_init = 0x40001360 + 0x40001364 bt_gain_offset = 0x40001364 + 0x40001368 fe_reg_init = 0x40001368 + 0x4000136c mac_enable_bb = 0x4000136c + 0x40001370 bb_wdg_cfg = 0x40001370 + 0x40001374 fe_txrx_reset = 0x40001374 + 0x40001378 set_rx_comp = 0x40001378 + 0x4000137c agc_reg_init = 0x4000137c + 0x40001380 bb_reg_init = 0x40001380 + 0x40001384 open_i2c_xpd = 0x40001384 + 0x40001388 txiq_set_reg = 0x40001388 + 0x4000138c rxiq_set_reg = 0x4000138c + 0x40001390 set_txclk_en = 0x40001390 + 0x40001394 set_rxclk_en = 0x40001394 + 0x40001398 bb_wdg_test_en = 0x40001398 + 0x4000139c noise_floor_auto_set = 0x4000139c + 0x400013a0 read_hw_noisefloor = 0x400013a0 + 0x400013a4 iq_corr_enable = 0x400013a4 + 0x400013a8 wifi_agc_sat_gain = 0x400013a8 + 0x400013ac phy_bbpll_cal = 0x400013ac + 0x400013b0 phy_ant_init = 0x400013b0 + 0x400013b4 phy_set_bbfreq_init = 0x400013b4 + 0x400013b8 wifi_fbw_sel = 0x400013b8 + 0x400013bc bt_filter_reg = 0x400013bc + 0x400013c0 phy_rx_sense_set = 0x400013c0 + 0x400013c4 tx_state_set = 0x400013c4 + 0x400013c8 phy_close_pa = 0x400013c8 + 0x400013cc phy_freq_correct = 0x400013cc + 0x400013d0 set_pbus_reg = 0x400013d0 + 0x400013d4 wifi_rifs_mode_en = 0x400013d4 + 0x400013d8 nrx_freq_set = 0x400013d8 + 0x400013dc fe_adc_on = 0x400013dc + 0x400013e0 phy_force_pwr_index = 0x400013e0 + 0x400013e4 rom_iq_est_enable = 0x400013e4 + 0x400013e8 rom_iq_est_disable = 0x400013e8 + 0x400013ec rom_bb_gain_index = 0x400013ec + 0x400013f0 rom_rfrx_gain_index = 0x400013f0 + 0x400013f4 dc_iq_est = 0x400013f4 + 0x400013f8 set_cal_rxdc = 0x400013f8 + 0x400013fc rxiq_get_mis = 0x400013fc + 0x40001400 rxiq_cover_mg_mp = 0x40001400 + 0x40001404 rfcal_rxiq = 0x40001404 + 0x40001408 get_rfcal_rxiq_data = 0x40001408 + 0x4000140c get_dco_comp = 0x4000140c + 0x40001410 pbus_rx_dco_cal = 0x40001410 + 0x40001414 rxdc_est_min = 0x40001414 + 0x40001418 pbus_rx_dco_cal_1step = 0x40001418 + 0x4000141c set_lb_txiq = 0x4000141c + 0x40001420 set_rx_gain_cal_iq = 0x40001420 + 0x40001424 set_rx_gain_cal_dc = 0x40001424 + 0x40001428 spur_reg_write_one_tone = 0x40001428 + 0x4000142c spur_cal = 0x4000142c + 0x40001430 spur_coef_cfg = 0x40001430 + 0x40001434 tsens_power_up = 0x40001434 + 0x40001438 tsens_read_init = 0x40001438 + 0x4000143c code_to_temp = 0x4000143c + 0x40001440 tsens_index_to_dac = 0x40001440 + 0x40001444 tsens_index_to_offset = 0x40001444 + 0x40001448 tsens_dac_cal = 0x40001448 + 0x4000144c tsens_code_read = 0x4000144c + 0x40001450 tsens_temp_read = 0x40001450 + 0x40001454 temp_to_power = 0x40001454 + 0x40001458 get_temp_init = 0x40001458 + 0x4000145c txbbgain_to_index = 0x4000145c + 0x40001460 index_to_txbbgain = 0x40001460 + 0x40001464 bt_index_to_bb = 0x40001464 + 0x40001468 bt_bb_to_index = 0x40001468 + 0x4000146c bt_get_tx_gain = 0x4000146c + 0x40001470 dig_gain_check = 0x40001470 + 0x40001474 wifi_get_tx_gain = 0x40001474 + 0x40001478 wifi_11g_rate_chg = 0x40001478 + 0x4000147c bt_chan_pwr_interp = 0x4000147c + 0x40001480 get_rate_fcc_index = 0x40001480 + 0x40001484 get_chan_target_power = 0x40001484 + 0x40001488 get_tx_gain_value = 0x40001488 + 0x4000148c wifi_get_target_power = 0x4000148c + 0x4087fce8 phy_param_rom = 0x4087fce8 + 0x40000afc esp_coex_rom_version_get = 0x40000afc + 0x40000b00 coex_bt_release = 0x40000b00 + 0x40000b04 coex_bt_request = 0x40000b04 + 0x40000b08 coex_core_ble_conn_dyn_prio_get = 0x40000b08 + 0x40000b10 coex_core_pti_get = 0x40000b10 + 0x40000b14 coex_core_release = 0x40000b14 + 0x40000b18 coex_core_request = 0x40000b18 + 0x40000b1c coex_core_status_get = 0x40000b1c + 0x40000b24 coex_event_duration_get = 0x40000b24 + 0x40000b28 coex_hw_timer_disable = 0x40000b28 + 0x40000b2c coex_hw_timer_enable = 0x40000b2c + 0x40000b30 coex_hw_timer_set = 0x40000b30 + 0x40000b34 coex_schm_interval_set = 0x40000b34 + 0x40000b38 coex_schm_lock = 0x40000b38 + 0x40000b3c coex_schm_unlock = 0x40000b3c + 0x40000b44 coex_wifi_release = 0x40000b44 + 0x40000b48 esp_coex_ble_conn_dynamic_prio_get = 0x40000b48 + 0x4087ffc4 coex_env_ptr = 0x4087ffc4 + 0x4087ffc0 coex_pti_tab_ptr = 0x4087ffc0 + 0x4087ffbc coex_schm_env_ptr = 0x4087ffbc + 0x4087ffb8 coexist_funcs = 0x4087ffb8 + 0x4087ffb4 g_coa_funcs_p = 0x4087ffb4 + 0x4087ffb0 g_coex_param_ptr = 0x4087ffb0 + 0x40000b4c esp_net80211_rom_version_get = 0x40000b4c + 0x40000b50 ampdu_dispatch = 0x40000b50 + 0x40000b54 ampdu_dispatch_all = 0x40000b54 + 0x40000b58 ampdu_dispatch_as_many_as_possible = 0x40000b58 + 0x40000b5c ampdu_dispatch_movement = 0x40000b5c + 0x40000b60 ampdu_dispatch_upto = 0x40000b60 + 0x40000b64 chm_is_at_home_channel = 0x40000b64 + 0x40000b68 cnx_node_is_existing = 0x40000b68 + 0x40000b6c cnx_node_search = 0x40000b6c + 0x40000b70 ic_ebuf_recycle_rx = 0x40000b70 + 0x40000b74 ic_ebuf_recycle_tx = 0x40000b74 + 0x40000b78 ic_reset_rx_ba = 0x40000b78 + 0x40000b7c ieee80211_align_eb = 0x40000b7c + 0x40000b84 ieee80211_ampdu_start_age_timer = 0x40000b84 + 0x40000b8c ieee80211_is_tx_allowed = 0x40000b8c + 0x40000b90 ieee80211_output_pending_eb = 0x40000b90 + 0x40000b98 //ieee80211_set_tx_desc = 0x40000b98 + 0x40000b9c //sta_input = 0x40000b9c + 0x40000ba0 wifi_get_macaddr = 0x40000ba0 + 0x40000ba4 wifi_rf_phy_disable = 0x40000ba4 + 0x40000ba8 wifi_rf_phy_enable = 0x40000ba8 + 0x40000bac ic_ebuf_alloc = 0x40000bac + 0x40000bb4 ieee80211_copy_eb_header = 0x40000bb4 + 0x40000bb8 ieee80211_recycle_cache_eb = 0x40000bb8 + 0x40000bbc ieee80211_search_node = 0x40000bbc + 0x40000bc0 ieee80211_crypto_encap = 0x40000bc0 + 0x40000bc8 ieee80211_decap = 0x40000bc8 + 0x40000bcc wifi_is_started = 0x40000bcc + 0x40000bd0 ieee80211_gettid = 0x40000bd0 + 0x40000bd4 //ieee80211_encap_esfbuf_htc = 0x40000bd4 + 0x4087ffac net80211_funcs = 0x4087ffac + 0x4087ffa8 g_scan = 0x4087ffa8 + 0x4087ffa4 g_chm = 0x4087ffa4 + 0x4087ffa0 g_ic_ptr = 0x4087ffa0 + 0x4087ff9c g_hmac_cnt_ptr = 0x4087ff9c + 0x4087ff98 g_tx_cacheq_ptr = 0x4087ff98 + 0x4087ff94 s_netstack_free = 0x4087ff94 + 0x4087ff90 mesh_rxcb = 0x4087ff90 + 0x4087ff8c sta_rxcb = 0x4087ff8c + 0x4087ff88 g_itwt_fid = 0x4087ff88 + 0x4087ff84 esp_test_tx_addba_request = 0x4087ff84 + 0x40000bd8 esp_pp_rom_version_get = 0x40000bd8 + 0x40000bdc ppCalTxopRTSThreshold = 0x40000bdc + 0x40000be0 RC_GetBlockAckTime = 0x40000be0 + 0x40000be4 ebuf_list_remove = 0x40000be4 + 0x40000be8 //esf_buf_alloc = 0x40000be8 + 0x40000bec //esf_buf_alloc_dynamic = 0x40000bec + 0x40000bf0 //esf_buf_recycle = 0x40000bf0 + 0x40000bf4 GetAccess = 0x40000bf4 + 0x40000bf8 hal_mac_is_low_rate_enabled = 0x40000bf8 + 0x40000bfc hal_mac_tx_get_blockack = 0x40000bfc + 0x40000c00 //hal_mac_tx_set_ppdu = 0x40000c00 + 0x40000c04 ic_get_trc = 0x40000c04 + 0x40000c08 //ic_mac_deinit = 0x40000c08 + 0x40000c0c ic_mac_init = 0x40000c0c + 0x40000c10 ic_interface_enabled = 0x40000c10 + 0x40000c14 is_lmac_idle = 0x40000c14 + 0x40000c1c lmacDiscardAgedMSDU = 0x40000c1c + 0x40000c28 lmacIsIdle = 0x40000c28 + 0x40000c2c lmacIsLongFrame = 0x40000c2c + 0x40000c34 lmacPostTxComplete = 0x40000c34 + 0x40000c38 lmacProcessAllTxTimeout = 0x40000c38 + 0x40000c3c lmacProcessCollisions = 0x40000c3c + 0x40000c40 //lmacProcessRxSucData = 0x40000c40 + 0x40000c44 lmacReachLongLimit = 0x40000c44 + 0x40000c48 lmacReachShortLimit = 0x40000c48 + 0x40000c4c lmacRecycleMPDU = 0x40000c4c + 0x40000c50 lmacRxDone = 0x40000c50 + 0x40000c54 //lmacSetTxFrame = 0x40000c54 + 0x40000c58 //lmacTxDone = 0x40000c58 + 0x40000c5c //lmacTxFrame = 0x40000c5c + 0x40000c60 mac_tx_set_duration = 0x40000c60 + 0x40000c64 //mac_tx_set_plcp0 = 0x40000c64 + 0x40000c68 //mac_tx_set_plcp1 = 0x40000c68 + 0x40000c6c mac_tx_set_plcp2 = 0x40000c6c + 0x40000c78 pm_disable_sleep_delay_timer = 0x40000c78 + 0x40000c80 pm_mac_wakeup = 0x40000c80 + 0x40000c84 pm_mac_sleep = 0x40000c84 + 0x40000c88 //pm_enable_active_timer = 0x40000c88 + 0x40000c8c pm_enable_sleep_delay_timer = 0x40000c8c + 0x40000c90 pm_local_tsf_process = 0x40000c90 + 0x40000c94 //pm_set_beacon_filter = 0x40000c94 + 0x40000c98 pm_is_in_wifi_slice_threshold = 0x40000c98 + 0x40000c9c pm_is_waked = 0x40000c9c + 0x40000ca0 //pm_keep_alive = 0x40000ca0 + 0x40000ca8 pm_on_data_rx = 0x40000ca8 + 0x40000cac //pm_on_tbtt = 0x40000cac + 0x40000cb4 //pm_process_tim = 0x40000cb4 + 0x40000cb8 //pm_rx_beacon_process = 0x40000cb8 + 0x40000cc0 //pm_sleep = 0x40000cc0 + 0x40000cc4 pm_sleep_for = 0x40000cc4 + 0x40000cc8 //pm_tbtt_process = 0x40000cc8 + 0x40000ccc ppAMPDU2Normal = 0x40000ccc + 0x40000cd4 ppCalFrameTimes = 0x40000cd4 + 0x40000cd8 ppCalSubFrameLength = 0x40000cd8 + 0x40000cdc //ppCalTxAMPDULength = 0x40000cdc + 0x40000ce0 ppCheckTxAMPDUlength = 0x40000ce0 + 0x40000ce4 ppDequeueRxq_Locked = 0x40000ce4 + 0x40000ce8 ppDequeueTxQ = 0x40000ce8 + 0x40000cec ppEmptyDelimiterLength = 0x40000cec + 0x40000cf0 ppEnqueueRxq = 0x40000cf0 + 0x40000cf4 ppEnqueueTxDone = 0x40000cf4 + 0x40000cf8 ppGetTxframe = 0x40000cf8 + 0x40000cfc //ppMapTxQueue = 0x40000cfc + 0x40000d00 //ppProcTxSecFrame = 0x40000d00 + 0x40000d04 ppProcessRxPktHdr = 0x40000d04 + 0x40000d08 //ppProcessTxQ = 0x40000d08 + 0x40000d0c ppRecordBarRRC = 0x40000d0c + 0x40000d10 ppRecycleAmpdu = 0x40000d10 + 0x40000d14 ppRecycleRxPkt = 0x40000d14 + 0x40000d18 //ppResortTxAMPDU = 0x40000d18 + 0x40000d1c ppResumeTxAMPDU = 0x40000d1c + 0x40000d24 //ppRxPkt = 0x40000d24 + 0x40000d28 ppRxProtoProc = 0x40000d28 + 0x40000d2c ppSearchTxQueue = 0x40000d2c + 0x40000d30 ppSearchTxframe = 0x40000d30 + 0x40000d34 ppSelectNextQueue = 0x40000d34 + 0x40000d38 ppSubFromAMPDU = 0x40000d38 + 0x40000d3c //ppTask = 0x40000d3c + 0x40000d40 //ppTxPkt = 0x40000d40 + 0x40000d44 ppTxProtoProc = 0x40000d44 + 0x40000d48 ppTxqUpdateBitmap = 0x40000d48 + 0x40000d50 pp_hdrsize = 0x40000d50 + 0x40000d54 pp_post = 0x40000d54 + 0x40000d58 pp_process_hmac_waiting_txq = 0x40000d58 + 0x40000d5c rcGetAmpduSched = 0x40000d5c + 0x40000d60 rcUpdateRxDone = 0x40000d60 + 0x40000d64 rc_get_trc = 0x40000d64 + 0x40000d68 rc_get_trc_by_index = 0x40000d68 + 0x40000d6c rcAmpduLowerRate = 0x40000d6c + 0x40000d70 rcampduuprate = 0x40000d70 + 0x40000d74 rcClearCurAMPDUSched = 0x40000d74 + 0x40000d78 rcClearCurSched = 0x40000d78 + 0x40000d7c rcClearCurStat = 0x40000d7c + 0x40000d84 rcLowerSched = 0x40000d84 + 0x40000d88 rcSetTxAmpduLimit = 0x40000d88 + 0x40000d8c rcTxUpdatePer = 0x40000d8c + 0x40000d90 rcUpdateAckSnr = 0x40000d90 + 0x40000da0 rcUpSched = 0x40000da0 + 0x40000da4 rssi_margin = 0x40000da4 + 0x40000da8 rx11NRate2AMPDULimit = 0x40000da8 + 0x40000dac TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40000dac + 0x40000db0 TRC_AMPDU_PER_UP_THRESHOLD = 0x40000db0 + 0x40000db4 trc_calc_duration = 0x40000db4 + 0x40000db8 trc_isTxAmpduOperational = 0x40000db8 + 0x40000dbc trc_onAmpduOp = 0x40000dbc + 0x40000dc0 TRC_PER_IS_GOOD = 0x40000dc0 + 0x40000dc4 trc_SetTxAmpduState = 0x40000dc4 + 0x40000dc8 trc_tid_isTxAmpduOperational = 0x40000dc8 + 0x40000dcc trcAmpduSetState = 0x40000dcc + 0x40000dd0 //wDevCheckBlockError = 0x40000dd0 + 0x40000dd8 wDev_DiscardFrame = 0x40000dd8 + 0x40000ddc wDev_GetNoiseFloor = 0x40000ddc + 0x40000de0 wDev_IndicateAmpdu = 0x40000de0 + 0x40000de4 //wDev_IndicateFrame = 0x40000de4 + 0x40000de8 wdev_mac_reg_load = 0x40000de8 + 0x40000dec wdev_mac_reg_store = 0x40000dec + 0x40000df0 wdev_mac_special_reg_load = 0x40000df0 + 0x40000df4 wdev_mac_special_reg_store = 0x40000df4 + 0x40000df8 wdev_mac_wakeup = 0x40000df8 + 0x40000dfc wdev_mac_sleep = 0x40000dfc + 0x40000e00 hal_mac_is_dma_enable = 0x40000e00 + 0x40000e04 //wDev_ProcessFiq = 0x40000e04 + 0x40000e08 //wDev_ProcessRxSucData = 0x40000e08 + 0x40000e0c //wdevProcessRxSucDataAll = 0x40000e0c + 0x40000e10 wdev_csi_len_align = 0x40000e10 + 0x40000e14 ppDequeueTxDone_Locked = 0x40000e14 + 0x40000e18 //ppProcTxDone = 0x40000e18 + 0x40000e1c //pm_tx_data_done_process = 0x40000e1c + 0x40000e20 config_is_cache_tx_buf_enabled = 0x40000e20 + 0x40000e24 //ppMapWaitTxq = 0x40000e24 + 0x40000e28 ppProcessWaitingQueue = 0x40000e28 + 0x40000e2c ppDisableQueue = 0x40000e2c + 0x40000e30 pm_allow_tx = 0x40000e30 + 0x40000e34 //wdev_is_data_in_rxlist = 0x40000e34 + 0x40000e38 ppProcTxCallback = 0x40000e38 + 0x40000e3c //mac_tx_set_hesig = 0x40000e3c + 0x40000e40 ppCalPreFecPaddingFactor = 0x40000e40 + 0x40000e44 //mac_tx_set_tb = 0x40000e44 + 0x40000e48 //mac_tx_set_mplen = 0x40000e48 + 0x40000e4c hal_get_tsf_timer = 0x40000e4c + 0x40000e50 ppTxPktForceWaked = 0x40000e50 + 0x40000e54 lmacProcessLongFrameSuccess = 0x40000e54 + 0x40000e58 lmacProcessShortFrameSuccess = 0x40000e58 + 0x40000e5c //lmacDiscardFrameExchangeSequence = 0x40000e5c + 0x40000e60 lmacProcessTBSuccess = 0x40000e60 + 0x40000e68 lmacProcessAckTimeout = 0x40000e68 + 0x40000e6c //lmacProcessTxComplete = 0x40000e6c + 0x40000e70 //ppRemoveHTC = 0x40000e70 + 0x40000e74 get_estimated_batime = 0x40000e74 + 0x40000e78 is_use_muedca = 0x40000e78 + 0x40000e7c //hal_mac_tx_clr_mplen = 0x40000e7c + 0x40000e80 //hal_mac_get_txq_state = 0x40000e80 + 0x40000e84 hal_mac_clr_txq_state = 0x40000e84 + 0x40000e88 hal_mac_get_txq_complete = 0x40000e88 + 0x40000e8c ht_get_min_subframe_len = 0x40000e8c + 0x40000e90 rx11ACRate2AMPDULimit = 0x40000e90 + 0x40000e94 pwr_hal_clear_intr_status = 0x40000e94 + 0x40000e98 pwr_hal_clear_mac_modem_beacon_miss_intr_filter = 0x40000e98 + 0x40000e9c pwr_hal_clear_mac_modem_rx_beacon_info = 0x40000e9c + 0x40000ea0 pwr_hal_clear_mac_modem_rx_beacon_miss_counter = 0x40000ea0 + 0x40000ea4 pwr_hal_clear_mac_modem_rx_beacon_sleep_counter = 0x40000ea4 + 0x40000ea8 pwr_hal_clear_mac_modem_state_wakeup_protect_signal = 0x40000ea8 + 0x40000eac pwr_hal_get_intr_raw_signal = 0x40000eac + 0x40000eb0 pwr_hal_get_intr_status = 0x40000eb0 + 0x40000eb4 pwr_hal_get_mac_modem_beacon_miss_limit_exceeded_status = 0x40000eb4 + 0x40000eb8 pwr_hal_get_mac_modem_rx_beacon_location_state = 0x40000eb8 + 0x40000ebc pwr_hal_get_mac_modem_rx_beacon_valid_state = 0x40000ebc + 0x40000ec0 pwr_hal_get_mac_modem_state_sleep_limit_exceeded_status = 0x40000ec0 + 0x40000ec4 pwr_hal_set_beacon_filter_abort_disable = 0x40000ec4 + 0x40000ec8 pwr_hal_set_beacon_filter_abort_enable = 0x40000ec8 + 0x40000ecc pwr_hal_set_beacon_filter_abort_length = 0x40000ecc + 0x40000ed0 //pwr_hal_set_beacon_filter_broadcast_wakeup_disable = 0x40000ed0 + 0x40000ed4 //pwr_hal_set_beacon_filter_broadcast_wakeup_enable = 0x40000ed4 + 0x40000ed8 pwr_hal_set_beacon_filter_disable = 0x40000ed8 + 0x40000edc pwr_hal_set_beacon_filter_enable = 0x40000edc + 0x40000ee0 pwr_hal_set_beacon_filter_force_dump_disable = 0x40000ee0 + 0x40000ee4 pwr_hal_set_beacon_filter_force_dump_enable = 0x40000ee4 + 0x40000ee8 pwr_hal_set_beacon_filter_force_dump_limit = 0x40000ee8 + 0x40000eec pwr_hal_set_beacon_filter_force_sync_disable = 0x40000eec + 0x40000ef0 pwr_hal_set_beacon_filter_force_sync_enable = 0x40000ef0 + 0x40000ef4 pwr_hal_set_beacon_filter_force_sync_limit = 0x40000ef4 + 0x40000ef8 pwr_hal_set_beacon_filter_frame_crc_state = 0x40000ef8 + 0x40000efc pwr_hal_set_beacon_filter_soc_wakeup_and_intr_disable = 0x40000efc + 0x40000f00 pwr_hal_set_beacon_filter_soc_wakeup_and_intr_enable = 0x40000f00 + 0x40000f04 pwr_hal_set_beacon_filter_unicast_wakeup_disable = 0x40000f04 + 0x40000f08 pwr_hal_set_beacon_filter_unicast_wakeup_enable = 0x40000f08 + 0x40000f0c pwr_hal_set_lpclk_cycle_time = 0x40000f0c + 0x40000f10 pwr_hal_set_lpclk_sync_disable = 0x40000f10 + 0x40000f14 pwr_hal_set_lpclk_sync_enable = 0x40000f14 + 0x40000f18 pwr_hal_set_mac_modem_beacon_miss_intr_disable = 0x40000f18 + 0x40000f1c pwr_hal_set_mac_modem_beacon_miss_intr_enable = 0x40000f1c + 0x40000f20 pwr_hal_set_mac_modem_beacon_miss_limit = 0x40000f20 + 0x40000f24 pwr_hal_set_mac_modem_beacon_miss_limit_exceeded_wakeup_disable = 0x40000f24 + 0x40000f28 pwr_hal_set_mac_modem_beacon_miss_limit_exceeded_wakeup_enable = 0x40000f28 + 0x40000f2c pwr_hal_set_mac_modem_beacon_miss_timeout = 0x40000f2c + 0x40000f30 pwr_hal_set_mac_modem_state_sleep_limit = 0x40000f30 + 0x40000f34 pwr_hal_set_mac_modem_state_sleep_limit_exceeded_wakeup_disable = 0x40000f34 + 0x40000f38 pwr_hal_set_mac_modem_state_sleep_limit_exceeded_wakeup_enable = 0x40000f38 + 0x40000f3c pwr_hal_set_mac_modem_state_wakeup_protect_disable = 0x40000f3c + 0x40000f40 pwr_hal_set_mac_modem_state_wakeup_protect_early_time = 0x40000f40 + 0x40000f44 pwr_hal_set_mac_modem_state_wakeup_protect_enable = 0x40000f44 + 0x40000f48 pwr_hal_set_mac_modem_tbtt_auto_period_disable = 0x40000f48 + 0x40000f4c pwr_hal_set_mac_modem_tbtt_auto_period_enable = 0x40000f4c + 0x40000f50 pwr_hal_set_mac_modem_tbtt_auto_period_interval = 0x40000f50 + 0x40000f54 pwr_hal_set_modem_state_interface = 0x40000f54 + 0x40000f58 hal_tsf_clear_soc_wakeup_request = 0x40000f58 + 0x40000f5c tsf_hal_clear_mac_modem_rf_power_state = 0x40000f5c + 0x40000f60 tsf_hal_clear_soc_wakeup_request = 0x40000f60 + 0x40000f64 tsf_hal_get_counter_value = 0x40000f64 + 0x40000f68 tsf_hal_get_mac_modem_rf_power_state = 0x40000f68 + 0x40000f6c tsf_hal_get_tbtt_interval = 0x40000f6c + 0x40000f70 tsf_hal_get_time = 0x40000f70 + 0x40000f74 tsf_hal_get_timer_target = 0x40000f74 + 0x40000f78 tsf_hal_is_tsf_enabled = 0x40000f78 + 0x40000f7c tsf_hal_map_tbtt_target_to_rx_frame = 0x40000f7c + 0x40000f80 tsf_hal_map_tsf_to_bssid = 0x40000f80 + 0x40000f84 tsf_hal_set_counter_value = 0x40000f84 + 0x40000f88 tsf_hal_set_modem_wakeup_early_time = 0x40000f88 + 0x40000f8c tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_disable = 0x40000f8c + 0x40000f90 tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_enable = 0x40000f90 + 0x40000f94 tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_disable = 0x40000f94 + 0x40000f98 tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_enable = 0x40000f98 + 0x40000f9c tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_disable = 0x40000f9c + 0x40000fa0 tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_enable = 0x40000fa0 + 0x40000fa4 tsf_hal_set_tbtt_disable = 0x40000fa4 + 0x40000fa8 tsf_hal_set_tbtt_early_time = 0x40000fa8 + 0x40000fac tsf_hal_set_tbtt_enable = 0x40000fac + 0x40000fb0 tsf_hal_set_tbtt_interval = 0x40000fb0 + 0x40000fb4 tsf_hal_set_tbtt_intr_disable = 0x40000fb4 + 0x40000fb8 tsf_hal_set_tbtt_intr_enable = 0x40000fb8 + 0x40000fbc tsf_hal_set_tbtt_modem_wakeup_disable = 0x40000fbc + 0x40000fc0 tsf_hal_set_tbtt_modem_wakeup_enable = 0x40000fc0 + 0x40000fc4 tsf_hal_set_tbtt_rf_ctrl_disable = 0x40000fc4 + 0x40000fc8 tsf_hal_set_tbtt_rf_ctrl_enable = 0x40000fc8 + 0x40000fcc tsf_hal_set_tbtt_rf_ctrl_wait_cycles = 0x40000fcc + 0x40000fd0 tsf_hal_set_tbtt_soc_wakeup_disable = 0x40000fd0 + 0x40000fd4 tsf_hal_set_tbtt_soc_wakeup_enable = 0x40000fd4 + 0x40000fdc tsf_hal_set_time = 0x40000fdc + 0x40000fe0 tsf_hal_set_timer_disable = 0x40000fe0 + 0x40000fe4 tsf_hal_set_timer_enable = 0x40000fe4 + 0x40000fe8 tsf_hal_set_timer_intr_disable = 0x40000fe8 + 0x40000fec tsf_hal_set_timer_intr_enable = 0x40000fec + 0x40000ff0 tsf_hal_set_timer_modem_wakeup_disable = 0x40000ff0 + 0x40000ff4 tsf_hal_set_timer_modem_wakeup_enable = 0x40000ff4 + 0x40000ff8 tsf_hal_set_timer_rf_ctrl_disable = 0x40000ff8 + 0x40000ffc tsf_hal_set_timer_rf_ctrl_enable = 0x40000ffc + 0x40001000 tsf_hal_set_timer_rf_ctrl_wait_cycles = 0x40001000 + 0x40001004 tsf_hal_set_timer_soc_wakeup_disable = 0x40001004 + 0x40001008 tsf_hal_set_timer_soc_wakeup_enable = 0x40001008 + 0x4000100c tsf_hal_set_timer_target = 0x4000100c + 0x40001010 tsf_hal_set_tsf_disable = 0x40001010 + 0x40001014 tsf_hal_set_tsf_enable = 0x40001014 + 0x40001018 tsf_hal_set_tsf_time_deviation = 0x40001018 + 0x4000101c tsf_hal_set_tsf_time_deviation_sync_disable = 0x4000101c + 0x40001020 tsf_hal_set_tsf_time_deviation_sync_enable = 0x40001020 + 0x40001024 tsf_hal_unmap_tbtt_target_to_rx_frame = 0x40001024 + 0x40001028 //ppSelectTxFormat = 0x40001028 + 0x4000102c //ppCertSetRate = 0x4000102c + 0x40001030 //ppHEAMPDU2Normal = 0x40001030 + 0x40001034 //ppCalTxHEAMPDULength = 0x40001034 + 0x40001038 //ppCalTxHESMPDULength = 0x40001038 + 0x4000103c rcGetRate = 0x4000103c + 0x40001040 rcGetDCMMaxRate = 0x40001040 + 0x40001044 //rcGetSMPDURate = 0x40001044 + 0x40001048 ppDirectRecycleAmpdu = 0x40001048 + 0x4000104c //ppCheckTxHEAMPDUlength = 0x4000104c + 0x40001050 //rx11AXRate2AMPDULimit = 0x40001050 + 0x40001054 //ppRegressAmpdu = 0x40001054 + 0x40001058 //ppCalDeliNum = 0x40001058 + 0x4000105c ppAdd2AMPDUTail = 0x4000105c + 0x40001060 esp_test_disable_tx_statistics = 0x40001060 + 0x40001064 esp_test_enable_tx_statistics = 0x40001064 + 0x40001068 esp_test_clr_tx_statistics = 0x40001068 + 0x4000106c esp_test_get_tx_statistics = 0x4000106c + 0x40001070 esp_test_clr_tx_tb_statistics = 0x40001070 + 0x40001074 esp_test_get_tx_tb_statistics = 0x40001074 + 0x40001078 test_tx_fail_statistics = 0x40001078 + 0x4000107c //test_tx_succ_statistics = 0x4000107c + 0x40001080 //esp_test_tx_process_complete = 0x40001080 + 0x40001084 //esp_test_tx_process_txq_state = 0x40001084 + 0x40001088 esp_test_tx_enab_statistics = 0x40001088 + 0x4000108c esp_test_tx_tb_complete = 0x4000108c + 0x40001090 esp_test_tx_count_retry = 0x40001090 + 0x40001094 esp_test_tx_count_collision = 0x40001094 + 0x40001098 esp_test_tx_count_timeout = 0x40001098 + 0x4000109c hal_enable_tx_statistics = 0x4000109c + 0x400010a0 test_rx_process_complete_noeb = 0x400010a0 + 0x400010a4 test_rx_process_complete_retry = 0x400010a4 + 0x400010a8 esp_test_rx_process_complete = 0x400010a8 + 0x400010ac esp_test_clr_rx_statistics = 0x400010ac + 0x400010b0 esp_test_get_rx_statistics = 0x400010b0 + 0x400010b4 test_free_rx_statistics = 0x400010b4 + 0x400010b8 esp_test_set_rx_error_occurs = 0x400010b8 + 0x400010bc esp_test_get_rx_error_occurs = 0x400010bc + 0x400010c0 esp_test_clr_rx_error_occurs = 0x400010c0 + 0x400010c4 esp_test_disable_rx_statistics = 0x400010c4 + 0x400010c8 esp_test_enable_rx_statistics = 0x400010c8 + 0x400010cc hal_enable_rx_statistics = 0x400010cc + 0x400010d0 get_user_num = 0x400010d0 + 0x400010d4 mumimo_spatial_cfg_get_nsts = 0x400010d4 + 0x400010d8 mumimo_spatial_cfg_get_nsts_tot = 0x400010d8 + 0x400010dc test_mumimo_get_heltf_num = 0x400010dc + 0x400010e0 test_mimo_update_user_info = 0x400010e0 + 0x400010e4 test_parse_rx_mu_mimo = 0x400010e4 + 0x400010e8 test_nonmimo_update_user_info = 0x400010e8 + 0x400010ec test_parse_rx_mu_nonmimo = 0x400010ec + 0x400010f0 esp_test_rx_parse_mu = 0x400010f0 + 0x400010f4 esp_test_get_rx_mu_statistics = 0x400010f4 + 0x400010f8 esp_test_clr_rx_mu_statistics = 0x400010f8 + 0x400010fc esp_test_enable_rx_mu_statistics = 0x400010fc + 0x40001100 esp_test_disable_rx_mu_statistics = 0x40001100 + 0x4004ffe0 our_instances_ptr = 0x4004ffe0 + 0x4087ff80 pTxRx = 0x4087ff80 + 0x4087ff7c lmacConfMib_ptr = 0x4087ff7c + 0x4087ff78 our_wait_eb = 0x4087ff78 + 0x4087ff74 our_tx_eb = 0x4087ff74 + 0x4087ff70 pp_wdev_funcs = 0x4087ff70 + 0x4087ff6c g_osi_funcs_p = 0x4087ff6c + 0x4087ff68 wDevCtrl_ptr = 0x4087ff68 + 0x4004ffdc g_wdev_last_desc_reset_ptr = 0x4004ffdc + 0x4087ff64 wDevMacSleep_ptr = 0x4087ff64 + 0x4087ff60 g_lmac_cnt_ptr = 0x4087ff60 + 0x4004ffd8 our_controls_ptr = 0x4004ffd8 + 0x4087ff5c pp_sig_cnt_ptr = 0x4087ff5c + 0x4087ff58 g_eb_list_desc_ptr = 0x4087ff58 + 0x4087ff54 s_fragment_ptr = 0x4087ff54 + 0x4087ff50 if_ctrl_ptr = 0x4087ff50 + 0x4087ff4c g_intr_lock_mux = 0x4087ff4c + 0x4087ff48 g_wifi_global_lock = 0x4087ff48 + 0x4087ff44 s_wifi_queue = 0x4087ff44 + 0x4087ff40 pp_task_hdl = 0x4087ff40 + 0x4087ff3c s_pp_task_create_sem = 0x4087ff3c + 0x4087ff38 s_pp_task_del_sem = 0x4087ff38 + 0x4087ff34 g_wifi_menuconfig_ptr = 0x4087ff34 + 0x4087ff30 xphyQueue = 0x4087ff30 + 0x4087ff2c ap_no_lr_ptr = 0x4087ff2c + 0x4087ff28 rc11BSchedTbl_ptr = 0x4087ff28 + 0x4087ff24 rc11NSchedTbl_ptr = 0x4087ff24 + 0x4087ff20 rcLoRaSchedTbl_ptr = 0x4087ff20 + 0x4087ff1c BasicOFDMSched_ptr = 0x4087ff1c + 0x4087ff18 trc_ctl_ptr = 0x4087ff18 + 0x4087ff14 g_pm_cnt_ptr = 0x4087ff14 + 0x4087ff10 g_pm_ptr = 0x4087ff10 + 0x4087ff0c g_pm_cfg_ptr = 0x4087ff0c + 0x4087ff08 g_esp_mesh_quick_funcs_ptr = 0x4087ff08 + 0x4087ff04 g_txop_queue_status_ptr = 0x4087ff04 + 0x4087ff00 g_mac_sleep_en_ptr = 0x4087ff00 + 0x4087fefc g_mesh_is_root_ptr = 0x4087fefc + 0x4087fef8 g_mesh_topology_ptr = 0x4087fef8 + 0x4087fef4 g_mesh_init_ps_type_ptr = 0x4087fef4 + 0x4087fef0 g_mesh_is_started_ptr = 0x4087fef0 + 0x4087feec g_config_func = 0x4087feec + 0x4087fee8 g_net80211_tx_func = 0x4087fee8 + 0x4087fee4 g_timer_func = 0x4087fee4 + 0x4087fee0 s_michael_mic_failure_cb = 0x4087fee0 + 0x4087fedc wifi_sta_rx_probe_req = 0x4087fedc + 0x4087fed8 g_tx_done_cb_func = 0x4087fed8 + 0x4087fe8c g_per_conn_trc = 0x4087fe8c + 0x4087fe88 s_encap_amsdu_func = 0x4087fe88 + 0x4087fe84 rx_beacon_count = 0x4087fe84 + 0x4087fe80 rx_beacon_sw_parse = 0x4087fe80 + 0x4087fe7c rx_beacon_hw_parse = 0x4087fe7c + 0x4087fe78 rx_beacon_tim_count = 0x4087fe78 + 0x4087fe74 rx_beacon_tim_udata = 0x4087fe74 + 0x4087fe70 rx_beacon_tim_udata_bitmap = 0x4087fe70 + 0x4087fe6c rx_beacon_tim_bdata = 0x4087fe6c + 0x4087fe68 rx_beacon_tim_bdata_bitmapctl = 0x4087fe68 + 0x4087fe64 rx_beacon_tim_bdata_bitmap_trans = 0x4087fe64 + 0x4087fe60 rx_beacon_tim_bdata_bitmap_mbssid_self = 0x4087fe60 + 0x4087fe5c rx_beacon_tim_bdata_bitmap_mbssid_other = 0x4087fe5c + 0x4087fe58 rx_beacon_dtim_tim = 0x4087fe58 + 0x4087fe54 rx_beacon_dtim_tim_mcast = 0x4087fe54 + 0x4087fd08 amdpu_delay_time_ms = 0x4087fd08 + 0x4087fd04 ampdu_delay_packet = 0x4087fd04 + 0x4087fe51 ampdu_delay = 0x4087fe51 + 0x4087fe50 first_ampdu = 0x4087fe50 + 0x4087fd02 s_ht_ampdu_density_us = 0x4087fd02 + 0x4087fd01 s_ht_ampdu_density = 0x4087fd01 + 0x4087fd00 s_running_phy_type = 0x4087fd00 + 0x4087fe4c complete_ena_tb_seqno = 0x4087fe4c + 0x4087fe48 complete_ena_tb_final = 0x4087fe48 + 0x4087fe44 complete_ena_tb_count = 0x4087fe44 + 0x4087fe40 s_itwt_state = 0x4087fe40 + 0x4087fe3c g_dbg_interp_tsf = 0x4087fe3c + 0x4087fe38 g_dbg_interp_tsf_end = 0x4087fe38 + 0x4087fe34 g_dbg_closrf_tsf = 0x4087fe34 + 0x4087fe30 g_dbg_closrf_idx = 0x4087fe30 + 0x4087fe2c g_dbg_closrf_blk = 0x4087fe2c + 0x4087fdf0 s_he_min_len_bytes = 0x4087fdf0 + 0x4087fdd0 s_he_dcm_min_len_bytes = 0x4087fdd0 + 0x4087fdc0 s_mplen_low_bitmap = 0x4087fdc0 + 0x4087fdb0 s_mplen_high_bitmap = 0x4087fdb0 + 0x4087fdac s_mplen_vi_bitmap = 0x4087fdac + 0x4087fda8 s_mplen_bk_bitmap = 0x4087fda8 + 0x4087fcfc esp_wifi_cert_tx_mcs = 0x4087fcfc + 0x4087fcf8 esp_wifi_cert_tx_bcc = 0x4087fcf8 + 0x4087fcf4 //esp_wifi_cert_tx_ltf = 0x4087fcf4 + 0x4087fcf0 //esp_wifi_cert_tx_gi = 0x4087fcf0 + 0x4087fcec esp_wifi_cert_tx_nss = 0x4087fcec + 0x4087fda4 esp_test_tx_statistics_aci_bitmap = 0x4087fda4 + 0x4087fd94 esp_test_tx_statistics = 0x4087fd94 + 0x4087fd84 esp_test_tx_tb_statistics = 0x4087fd84 + 0x4087fd24 esp_test_tx_fail_statistics = 0x4087fd24 + 0x4087fd1c esp_test_rx_statistics = 0x4087fd1c + 0x4087fd18 esp_test_rx_mu_statistics = 0x4087fd18 + 0x4087fd14 esp_test_mu_print_ru_allocation = 0x4087fd14 + 0x4004ffc8 sigb_ru_allocation_user_num = 0x4004ffc8 + 0x4004ff38 sigb_common_ru_allocation = 0x4004ff38 + 0x4004fee8 mu_mimo_special_cfg_user_num_2 = 0x4004fee8 + 0x4004fe80 mu_mimo_special_cfg_user_num_3 = 0x4004fe80 + 0x4004fe28 mu_mimo_special_cfg_user_num_4 = 0x4004fe28 + 0x4004fdf0 mu_mimo_special_cfg_user_num_5 = 0x4004fdf0 + 0x4004fdd0 mu_mimo_special_cfg_user_num_6 = 0x4004fdd0 + 0x4004fdc0 mu_mimo_special_cfg_user_num_7 = 0x4004fdc0 + 0x4004fdb8 mu_mimo_special_cfg_user_num_8 = 0x4004fdb8 + 0x4087fd10 esp_test_rx_error_occurs = 0x4087fd10 + 0x4087fd0c g_pp_tx_pkt_num = 0x4087fd0c + 0x4004fd40 he_max_apep_length = 0x4004fd40 + 0x400004a4 esp_rom_newlib_init_common_mutexes = 0x400004a4 + 0x400004a8 memset = 0x400004a8 + 0x400004ac memcpy = 0x400004ac + 0x400004b0 memmove = 0x400004b0 + 0x400004b4 memcmp = 0x400004b4 + 0x400004b8 strcpy = 0x400004b8 + 0x400004bc strncpy = 0x400004bc + 0x400004c0 strcmp = 0x400004c0 + 0x400004c4 strncmp = 0x400004c4 + 0x400004c8 strlen = 0x400004c8 + 0x400004cc strstr = 0x400004cc + 0x400004d0 bzero = 0x400004d0 + 0x400004d4 _isatty_r = 0x400004d4 + 0x400004d8 sbrk = 0x400004d8 + 0x400004dc isalnum = 0x400004dc + 0x400004e0 isalpha = 0x400004e0 + 0x400004e4 isascii = 0x400004e4 + 0x400004e8 isblank = 0x400004e8 + 0x400004ec iscntrl = 0x400004ec + 0x400004f0 isdigit = 0x400004f0 + 0x400004f4 islower = 0x400004f4 + 0x400004f8 isgraph = 0x400004f8 + 0x400004fc isprint = 0x400004fc + 0x40000500 ispunct = 0x40000500 + 0x40000504 isspace = 0x40000504 + 0x40000508 isupper = 0x40000508 + 0x4000050c toupper = 0x4000050c + 0x40000510 tolower = 0x40000510 + 0x40000514 toascii = 0x40000514 + 0x40000518 memccpy = 0x40000518 + 0x4000051c memchr = 0x4000051c + 0x40000520 memrchr = 0x40000520 + 0x40000524 strcasecmp = 0x40000524 + 0x40000528 strcasestr = 0x40000528 + 0x4000052c strcat = 0x4000052c + 0x40000530 strdup = 0x40000530 + 0x40000534 strchr = 0x40000534 + 0x40000538 strcspn = 0x40000538 + 0x4000053c strcoll = 0x4000053c + 0x40000540 strlcat = 0x40000540 + 0x40000544 strlcpy = 0x40000544 + 0x40000548 strlwr = 0x40000548 + 0x4000054c strncasecmp = 0x4000054c + 0x40000550 strncat = 0x40000550 + 0x40000554 strndup = 0x40000554 + 0x40000558 strnlen = 0x40000558 + 0x4000055c strrchr = 0x4000055c + 0x40000560 strsep = 0x40000560 + 0x40000564 strspn = 0x40000564 + 0x40000568 strtok_r = 0x40000568 + 0x4000056c strupr = 0x4000056c + 0x40000570 longjmp = 0x40000570 + 0x40000574 setjmp = 0x40000574 + 0x40000578 abs = 0x40000578 + 0x4000057c div = 0x4000057c + 0x40000580 labs = 0x40000580 + 0x40000584 ldiv = 0x40000584 + 0x40000588 qsort = 0x40000588 + 0x4000058c rand_r = 0x4000058c + 0x40000590 rand = 0x40000590 + 0x40000594 srand = 0x40000594 + 0x40000598 utoa = 0x40000598 + 0x4000059c itoa = 0x4000059c + 0x400005a0 atoi = 0x400005a0 + 0x400005a4 atol = 0x400005a4 + 0x400005a8 strtol = 0x400005a8 + 0x400005ac strtoul = 0x400005ac + 0x400005b0 fflush = 0x400005b0 + 0x400005b4 _fflush_r = 0x400005b4 + 0x400005b8 _fwalk = 0x400005b8 + 0x400005bc _fwalk_reent = 0x400005bc + 0x400005c0 __smakebuf_r = 0x400005c0 + 0x400005c4 __swhatbuf_r = 0x400005c4 + 0x400005c8 __swbuf_r = 0x400005c8 + 0x400005cc __swbuf = 0x400005cc + 0x400005d0 __swsetup_r = 0x400005d0 + 0x4087ffd4 syscall_table_ptr = 0x4087ffd4 + 0x4087ffd0 _global_impure_ptr = 0x4087ffd0 + 0x400005d4 __sprint_r = 0x400005d4 + 0x400005d8 _fiprintf_r = 0x400005d8 + 0x400005dc _fprintf_r = 0x400005dc + 0x400005e0 _vfiprintf_r = 0x400005e0 + 0x400005e4 _vfprintf_r = 0x400005e4 + 0x400005e8 fiprintf = 0x400005e8 + 0x400005ec fprintf = 0x400005ec + 0x400005f0 printf = 0x400005f0 + 0x400005f4 vfiprintf = 0x400005f4 + 0x400005f8 vfprintf = 0x400005f8 + 0x400005fc asprintf = 0x400005fc + 0x40000600 sprintf = 0x40000600 + 0x40000604 snprintf = 0x40000604 + 0x40000608 siprintf = 0x40000608 + 0x4000060c sniprintf = 0x4000060c + 0x40000610 vprintf = 0x40000610 + 0x40000614 viprintf = 0x40000614 + 0x40000618 vsnprintf = 0x40000618 + 0x4000061c vsniprintf = 0x4000061c + 0x40000620 sscanf = 0x40000620 + 0x40000624 siscanf = 0x40000624 + 0x400003fc tlsf_create = 0x400003fc + 0x40000400 tlsf_create_with_pool = 0x40000400 + 0x40000404 tlsf_get_pool = 0x40000404 + 0x40000408 tlsf_add_pool = 0x40000408 + 0x4000040c tlsf_remove_pool = 0x4000040c + 0x40000410 tlsf_malloc = 0x40000410 + 0x40000414 tlsf_memalign = 0x40000414 + 0x40000418 tlsf_memalign_offs = 0x40000418 + 0x4000041c tlsf_realloc = 0x4000041c + 0x40000420 tlsf_free = 0x40000420 + 0x40000424 tlsf_block_size = 0x40000424 + 0x40000428 tlsf_size = 0x40000428 + 0x4000042c tlsf_align_size = 0x4000042c + 0x40000430 tlsf_block_size_min = 0x40000430 + 0x40000434 tlsf_block_size_max = 0x40000434 + 0x40000438 tlsf_pool_overhead = 0x40000438 + 0x4000043c tlsf_alloc_overhead = 0x4000043c + 0x40000440 tlsf_walk_pool = 0x40000440 + 0x40000444 tlsf_check = 0x40000444 + 0x4000044c tlsf_poison_fill_pfunc_set = 0x4000044c + 0x40000450 tlsf_poison_check_pfunc_set = 0x40000450 + 0x40000454 multi_heap_get_block_address_impl = 0x40000454 + 0x40000458 multi_heap_get_allocated_size_impl = 0x40000458 + 0x4000045c multi_heap_register_impl = 0x4000045c + 0x40000460 multi_heap_set_lock = 0x40000460 + 0x40000464 multi_heap_mutex_init = 0x40000464 + 0x40000468 multi_heap_internal_lock = 0x40000468 + 0x4000046c multi_heap_internal_unlock = 0x4000046c + 0x40000470 multi_heap_get_first_block = 0x40000470 + 0x40000474 multi_heap_get_next_block = 0x40000474 + 0x40000478 multi_heap_is_free = 0x40000478 + 0x4000047c multi_heap_malloc_impl = 0x4000047c + 0x40000480 multi_heap_free_impl = 0x40000480 + 0x40000484 multi_heap_realloc_impl = 0x40000484 + 0x40000488 multi_heap_aligned_alloc_impl_offs = 0x40000488 + 0x4000048c multi_heap_aligned_alloc_impl = 0x4000048c + 0x40000490 multi_heap_check = 0x40000490 + 0x40000494 multi_heap_dump = 0x40000494 + 0x40000498 multi_heap_free_size_impl = 0x40000498 + 0x4000049c multi_heap_minimum_free_size_impl = 0x4000049c + 0x400004a0 multi_heap_get_info_impl = 0x400004a0 + 0x4087ffd8 heap_tlsf_table_ptr = 0x4087ffd8 + 0x4000047c PROVIDE (multi_heap_malloc = multi_heap_malloc_impl) + 0x40000480 PROVIDE (multi_heap_free = multi_heap_free_impl) + 0x40000484 PROVIDE (multi_heap_realloc = multi_heap_realloc_impl) + 0x40000458 PROVIDE (multi_heap_get_allocated_size = multi_heap_get_allocated_size_impl) + 0x4000045c PROVIDE (multi_heap_register = multi_heap_register_impl) + 0x400004a0 PROVIDE (multi_heap_get_info = multi_heap_get_info_impl) + 0x40000498 PROVIDE (multi_heap_free_size = multi_heap_free_size_impl) + 0x4000049c PROVIDE (multi_heap_minimum_free_size = multi_heap_minimum_free_size_impl) + [!provide] PROVIDE (multi_heap_get_block_address = multi_heap_get_block_address_impl) + [!provide] PROVIDE (multi_heap_aligned_alloc = multi_heap_aligned_alloc_impl) + [!provide] PROVIDE (multi_heap_aligned_free = multi_heap_aligned_free_impl) + [!provide] PROVIDE (multi_heap_check = multi_heap_check) + [!provide] PROVIDE (multi_heap_set_lock = multi_heap_set_lock) + 0x40000464 PROVIDE (multi_heap_os_funcs_init = multi_heap_mutex_init) + [!provide] PROVIDE (multi_heap_internal_lock = multi_heap_internal_lock) + [!provide] PROVIDE (multi_heap_internal_unlock = multi_heap_internal_unlock) + 0x40000000 _heap_end = 0x40000000 + 0x50000000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_fast_start = ABSOLUTE (.) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_text_start = ABSOLUTE (.) + *(.rtc.entry.text) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.text .text.*) + *(.rtc_text_end_test) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_text_end = ABSOLUTE (.) + +.rtc.force_fast + 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_fast_start = ABSOLUTE (.) + 0x50000000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x50000000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _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.* .srodata.*) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) + *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_reserved 0x50003fe8 0x18 + 0x50003fe8 . = ALIGN (0x4) + 0x50003fe8 _rtc_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x50003fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x50004000 _rtc_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_reserved_length = (_rtc_reserved_end - _rtc_reserved_start) + 0x00000001 ASSERT ((_rtc_reserved_length <= LENGTH (rtc_reserved_seg)), RTC 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.text 0x40800000 0xae70 + 0x40800000 _iram_start = ABSOLUTE (.) + 0x00000001 ASSERT (((ABSOLUTE (.) % 0x100) == 0x0), vector address must be 256 byte aligned) + *(.exception_vectors_table.text) + .exception_vectors_table.text + 0x40800000 0x102 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + 0x40800000 _vector_table + *(.exception_vectors.text) + .exception_vectors.text + 0x40800102 0x1d6 esp-idf/riscv/libriscv.a(vectors.S.obj) + 0x40800102 _panic_handler + 0x408001dc _interrupt_handler + 0x408002d8 . = ALIGN (0x4) + *fill* 0x408002d8 0x0 + 0x408002d8 _invalid_pc_placeholder = ABSOLUTE (.) + 0x408002d8 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.0 0x408002d8 0x2ac esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x408002d8 call_start_cpu0 + .iram1.1 0x40800584 0xee esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .iram1.1 0x40800672 0x24 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .iram1.0 0x40800696 0x42 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x40800696 esp_reset_reason_set_hint + .iram1.0 0x408006d8 0x188 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x408006d8 esp_system_reset_modules_on_exit + .iram1.1 0x40800860 0xf0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x40800860 esp_restart_noos + .iram1.0 0x40800950 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40800950 panic_abort + .iram1.0 0x40800966 0x16 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .iram1.1 0x4080097c 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x4080097c panicHandler + .iram1.2 0x4080099a 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x4080099a xt_unhandled_exception + .iram1.0 0x408009b8 0x1c esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x408009b8 efuse_hal_chip_revision + .iram1.1 0x408009d4 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x408009d4 efuse_hal_blk_version + .iram1.2 0x408009f2 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x408009f2 efuse_hal_get_disable_wafer_version_major + .iram1.4 0x40800a00 0x24 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40800a00 efuse_hal_flash_encryption_enabled + .iram1.0 0x40800a24 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40800a24 efuse_hal_get_major_chip_version + .iram1.1 0x40800a34 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40800a34 efuse_hal_get_minor_chip_version + .iram1.0 0x40800a44 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9 0x40800a5a 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.1 0x40800a94 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800a94 heap_caps_malloc + .iram1.2 0x40800ac8 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800ac8 heap_caps_malloc_default + .iram1.7 0x40800b30 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800b30 heap_caps_realloc + .iram1.3 0x40800b64 0x70 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800b64 heap_caps_realloc_default + .iram1.8 0x40800bd4 0x3c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800bd4 heap_caps_calloc + .iram1.11 0x40800c10 0x4a esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40800c10 heap_caps_aligned_alloc + .iram1.2 0x40800c5a 0x1e esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .iram1.1 0x40800c78 0x5a esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40800c78 heap_caps_free + .iram1.3 0x40800cd2 0xb0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40800cd2 heap_caps_aligned_alloc_base + .iram1.4 0x40800d82 0x12 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40800d82 heap_caps_malloc_base + .iram1.5 0x40800d94 0x126 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40800d94 heap_caps_realloc_base + .iram1.6 0x40800eba 0x42 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40800eba heap_caps_calloc_base + .iram1.1 0x40800efc 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40800efc esp_clk_cpu_freq + .iram1.2 0x40800f1a 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40800f1a esp_clk_apb_freq + .iram1.3 0x40800f28 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40800f28 esp_clk_xtal_freq + .iram1.0 0x40800f42 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.4 0x40800f7c 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40800f7c esp_intr_noniram_disable + .iram1.5 0x40800ffe 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40800ffe esp_intr_noniram_enable + .iram1.8 0x40801060 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40801060 esp_intr_enable_source + .iram1.2 0x40801086 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40801086 esp_intr_enable + .iram1.9 0x4080112c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4080112c esp_intr_disable_source + .iram1.3 0x40801152 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40801152 esp_intr_disable + .iram1.0 0x40801246 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40801246 rtc_isr_noniram_disable + .iram1.1 0x40801248 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40801248 rtc_isr_noniram_enable + .iram1.2 0x4080124a 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x4080124a regi2c_ctrl_read_reg_mask + .iram1.3 0x408012a4 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x408012a4 regi2c_ctrl_write_reg + .iram1.4 0x408012f2 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x408012f2 regi2c_ctrl_write_reg_mask + .iram1.0 0x40801350 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.1 0x40801378 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.2 0x40801388 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.3 0x408013fe 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.4 0x4080142a 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.5 0x40801458 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.8 0x4080146a 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.9 0x40801480 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.10 0x40801498 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.7 0x408014c6 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.6 0x408014d6 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.17 0x408014e6 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.14 0x4080157e 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.15 0x40801618 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.11 0x408016b2 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x408016b2 MODEM_CLOCK_instance + .iram1.19 0x408016b8 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .iram1.20 0x40801722 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x40801722 modem_clock_module_enable + .iram1.21 0x4080176a 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x4080176a modem_clock_module_disable + .iram1.0 0x408017ac 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + 0x408017ac PMU_instance + *fill* 0x408017b2 0xe + .iram1 0x408017c0 0x1cc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + 0x408017c0 rv_core_critical_regs_save + 0x408018b0 _rv_core_critical_regs_restore + 0x408018b2 rv_core_critical_regs_restore + .iram1.1 0x4080198c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4080198c periph_rcc_enter + .iram1.2 0x408019a6 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x408019a6 periph_rcc_exit + .iram1.1 0x408019c0 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + 0x408019c0 sleep_retention_get_inited_modules + .iram1.2 0x408019ca 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + 0x408019ca sleep_retention_get_created_modules + .iram1.0 0x408019d4 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + 0x408019d4 PAU_instance + .iram1.0 0x40801a48 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.16 0x40801a7a 0x2c esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.4 0x40801aa6 0xce esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.9 0x40801b74 0x86 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.2 0x40801bfa 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801bfa _lock_init_recursive + .iram1.3 0x40801c0c 0x52 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c0c _lock_close_recursive + 0x40801c0c _lock_close + .iram1.5 0x40801c5e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c5e _lock_acquire + .iram1.6 0x40801c6e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c6e _lock_acquire_recursive + .iram1.7 0x40801c7e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c7e _lock_try_acquire + .iram1.8 0x40801c8e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c8e _lock_try_acquire_recursive + .iram1.10 0x40801c9e 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801c9e _lock_release + .iram1.11 0x40801cac 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801cac _lock_release_recursive + .iram1.12 0x40801cba 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801cba __retarget_lock_init + .iram1.13 0x40801ccc 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801ccc __retarget_lock_init_recursive + .iram1.14 0x40801cde 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801cde __retarget_lock_close + .iram1.15 0x40801cee 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801cee __retarget_lock_close_recursive + .iram1.17 0x40801cfe 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801cfe __retarget_lock_acquire + .iram1.18 0x40801d30 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801d30 __retarget_lock_acquire_recursive + .iram1.19 0x40801d62 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801d62 __retarget_lock_try_acquire + .iram1.20 0x40801d94 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801d94 __retarget_lock_try_acquire_recursive + .iram1.21 0x40801dc8 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801dc8 __retarget_lock_release + .iram1.22 0x40801ddc 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40801ddc __retarget_lock_release_recursive + .iram1.0 0x40801df0 0x36 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x40801df0 esp_reent_init + .iram1.1 0x40801e26 0x72 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x40801e26 _gettimeofday_r + .iram1.0 0x40801e98 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x40801e98 _times_r + .iram1.0 0x40801ede 0x24 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x40801ede esp_system_get_time + .iram1.1 0x40801f02 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x40801f02 esp_timer_impl_get_min_period_us + .iram1.3 0x40801f0a 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.1 0x40801f2e 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x40801f2e esp_timer_get_time + 0x40801f2e esp_timer_impl_get_time + .iram1.2 0x40801f56 0x9a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x40801f56 esp_timer_impl_set_alarm_id + .iram1.0 0x40801ff0 0x66 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .iram1.0 0x40802056 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40802056 esp_coex_common_env_is_chip_wrapper + .iram1.3 0x4080205a 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4080205a esp_coex_common_task_yield_from_isr_wrapper + .iram1.4 0x40802068 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40802068 esp_coex_common_timer_disarm_wrapper + .iram1.5 0x40802076 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40802076 esp_coex_common_timer_arm_us_wrapper + .iram1.6 0x40802084 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40802084 esp_coex_common_malloc_internal_wrapper + .iram1.9 0x40802098 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8 0x408020a6 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.7 0x408020b4 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.1 0x408020c6 0x2c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x408020c6 bootloader_flash_execute_command_common + .iram1.2 0x4080238c 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4080238c bootloader_execute_flash_command + .iram1.4 0x408023a6 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x408023a6 bootloader_read_flash_id + .iram1.12 0x408023da 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x408023da bootloader_flash_reset_chip + .iram1.0 0x4080245a 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4080245a esp_flash_encryption_enabled + .iram1.2 0x40802468 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3 0x40802476 0x84 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.4 0x408024fa 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.16 0x4080251e 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.1 0x4080254e 0x7a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4080254e esp_mmu_paddr_find_caps + .iram1.0 0x408025c8 0x98 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x408025c8 esp_heap_adjust_alignment_to_hw + .iram1.5 0x40802660 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40802660 spi_flash_disable_cache + .iram1.0 0x40802672 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40802672 spi_flash_disable_interrupts_caches_and_other_cpu + .iram1.6 0x40802694 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40802694 spi_flash_restore_cache + .iram1.1 0x408026a6 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x408026a6 spi_flash_enable_interrupts_caches_and_other_cpu + .iram1.4 0x408026c8 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x408026c8 spi_flash_enable_cache + .iram1.7 0x408026d8 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x408026d8 spi_flash_cache_enabled + .iram1.0 0x408026ea 0x50 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.1 0x4080273a 0x74 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4080273a spi_flash_check_and_flush_cache + .iram1.4 0x408027ae 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x408027ae esp_mspi_pin_init + .iram1.5 0x408027b0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x408027b0 spi_flash_init_chip_state + .iram1.7 0x408027b4 0x34 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x408027b4 esp_mspi_32bit_address_flash_feature_check + .iram1.3 0x408027e8 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.4 0x40802810 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.6 0x40802832 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.7 0x40802886 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40802886 esp_flash_chip_driver_initialized + .iram1.5 0x40802892 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.12 0x408028ba 0xa2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.10 0x4080295c 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.13 0x408029dc 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x408029dc esp_flash_get_physical_size + .iram1.9 0x40802a40 0x1c0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40802a40 esp_flash_init_main + .iram1.9 0x40802c00 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.17 0x40802c2a 0x3e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.8 0x40802c68 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.12 0x40802cae 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.11 0x40802cbe 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.10 0x40802d26 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.14 0x40802d3c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.13 0x40802d4c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0 0x40802d98 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.7 0x40802da6 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.1 0x40802dc2 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.6 0x40802dd0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x40802de0 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.2 0x40802df6 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.1 0x40802e1a 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.1 0x40802e36 0x54 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.2 0x40802e8a 0x5e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.3 0x40802ee8 0xe esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40802ee8 esp_crosscore_int_send_yield + .iram1.0 0x40802ef6 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40802ef6 esp_vApplicationTickHook + .iram1.0 0x40802f26 0x5e esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .iram1.0 0x40802f84 0x90 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x40802f84 esp_backtrace_print + .iram1.0 0x40803014 0xdc esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .iram1.2 0x408030f0 0x96 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 0x408030f0 esp_rom_regi2c_read_mask + 0x408030f0 regi2c_read_mask_impl + .iram1.3 0x40803186 0x52 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 0x40803186 regi2c_write_impl + 0x40803186 esp_rom_regi2c_write + .iram1.4 0x408031d8 0xd0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 0x408031d8 regi2c_write_mask_impl + 0x408031d8 esp_rom_regi2c_write_mask + .iram1.2 0x408032a8 0x24 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + 0x408032a8 lp_timer_hal_get_cycle_count + .iram1.0 0x408032cc 0x166 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x408032cc modem_clock_hal_set_clock_domain_icg_bitmap + .iram1.1 0x40803432 0xf2 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x40803432 modem_clock_hal_get_clock_domain_icg_bitmap + .iram1.2 0x40803524 0x28 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x40803524 modem_clock_hal_enable_modem_common_fe_clock + .iram1.3 0x4080354c 0x28 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4080354c modem_clock_hal_enable_modem_private_fe_clock + .iram1.0 0x40803574 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x40803574 adc_set_hw_calibration_code + .iram1.6 0x4080359a 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.7 0x408035a8 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.4 0x408035c2 0xc2 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.8 0x40803684 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.5 0x4080369e 0x84 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.9 0x40803722 0x2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.1 0x4080374c 0x8c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4080374c esp_timer_start_once + .iram1.2 0x408037d8 0xbc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x408037d8 esp_timer_start_periodic + .iram1.3 0x40803894 0x56 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x40803894 esp_timer_stop + .iram1.0 0x408038ea 0x12 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.1 0x408038fc 0xa2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x408038fc os_timer_arm_us + 0x408038fc ets_timer_arm_us + .iram1.3 0x4080399e 0x1e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x4080399e os_timer_disarm + 0x4080399e ets_timer_disarm + .iram1.3 0x408039bc 0xc C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + 0x408039bc coex_dbg_output + *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.*) + *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) + *libcoexist.a:(.coexiram .coexiram.*) + *libcoexist.a:(.coexsleepiram .coexsleepiram.*) + *libesp_driver_gptimer.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) + .text.esp_cpu_wait_for_intr + 0x408039c8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x408039c8 esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + .text.esp_ptr_byte_accessible + 0x408039e4 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x408039e4 esp_ptr_byte_accessible + *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) + *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) + *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) + *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:pmu_sleep.*(.literal .literal.* .text .text.*) + .text.pmu_sleep_enable_regdma_backup + 0x40803a02 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + 0x40803a02 pmu_sleep_enable_regdma_backup + .text.pmu_sleep_disable_regdma_backup + 0x40803a5c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + 0x40803a5c pmu_sleep_disable_regdma_backup + .text.pmu_sleep_enable_hp_sleep_sysclk + 0x40803ab4 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + 0x40803ab4 pmu_sleep_enable_hp_sleep_sysclk + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + .text.rtc_clk_bbpll_disable + 0x40803ae2 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_enable + 0x40803b08 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_8m + 0x40803b2a 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_xtal + 0x40803b84 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x40803c02 0xac esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_enable_i2c_ana_master_clock + 0x40803cae 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_configure + 0x40803ccc 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_add_consumer + 0x40803dc0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803dc0 rtc_clk_bbpll_add_consumer + .text.rtc_clk_bbpll_remove_consumer + 0x40803dd0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803dd0 rtc_clk_bbpll_remove_consumer + .text.rtc_clk_32k_enable + 0x40803de0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803de0 rtc_clk_32k_enable + .text.rtc_clk_32k_enable_external + 0x40803e50 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803e50 rtc_clk_32k_enable_external + .text.rtc_clk_rc32k_enable + 0x40803e6a 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803e6a rtc_clk_rc32k_enable + .text.rtc_clk_8m_enable + 0x40803eaa 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803eaa rtc_clk_8m_enable + .text.rtc_clk_slow_src_set + 0x40803eea 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803eea rtc_clk_slow_src_set + .text.rtc_clk_slow_src_get + 0x40803f64 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803f64 rtc_clk_slow_src_get + .text.rtc_clk_slow_freq_get_hz + 0x40803f9e 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803f9e rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_src_set + 0x40803fe0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40803fe0 rtc_clk_fast_src_set + .text.rtc_clk_set_cpu_switch_to_pll + 0x40804020 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40804020 rtc_clk_set_cpu_switch_to_pll + .text.rtc_clk_xtal_freq_get + 0x40804022 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40804022 rtc_clk_xtal_freq_get + 0x40804022 rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4080409e 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4080409e rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_set_config + 0x4080411c 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4080411c rtc_clk_cpu_freq_set_config + .text.rtc_clk_cpu_freq_get_config + 0x408041cc 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408041cc rtc_clk_cpu_freq_get_config + .text.rtc_clk_cpu_set_to_default_config + 0x408042dc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408042dc rtc_clk_cpu_set_to_default_config + .text.rtc_clk_cpu_freq_set_xtal + 0x408042f8 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408042f8 rtc_clk_cpu_freq_set_xtal + .text.rtc_clk_ahb_freq_get + 0x4080430a 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x408043e6 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408043e6 rtc_clk_apb_freq_get + .text.rtc_dig_clk8m_enable + 0x4080441c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4080441c rtc_dig_clk8m_enable + .text.rtc_dig_clk8m_disable + 0x40804442 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40804442 rtc_dig_clk8m_disable + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_32k_valid + 0x4080446a 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_internal + 0x40804502 0x450 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal + 0x40804952 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40804952 rtc_clk_cal + .text.rtc_time_us_to_slowclk + 0x40804a14 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40804a14 rtc_time_us_to_slowclk + .text.rtc_time_get + 0x40804a54 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40804a54 rtc_time_get + .text.rtc_clk_freq_cal + 0x40804a62 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40804a62 rtc_clk_freq_cal + .text.enable_timer_group0_for_calibration + 0x40804a82 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) + .text.systimer_ticks_to_us + 0x40804ae4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x40804ae4 systimer_ticks_to_us + .text.systimer_us_to_ticks + 0x40804af0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x40804af0 systimer_us_to_ticks + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + .text.esp_cache_get_alignment + 0x40804afc 0x4e esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + 0x40804afc esp_cache_get_alignment + *libesp_phy.a:phy_init.*(.literal.esp_phy_disable .text.esp_phy_disable) + *libesp_phy.a:phy_init.*(.literal.esp_phy_enable .text.esp_phy_enable) + *libesp_phy.a:phy_init.*(.literal.esp_wifi_bt_power_domain_off .text.esp_wifi_bt_power_domain_off) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + .text.prvCheckItemAvail + 0x40804b4a 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvAcquireItemNoSplit + 0x40804b90 0xda esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGeneric + 0x40804c6a 0x134 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendAcquireGeneric + 0x40804d9e 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSend + 0x40804e84 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40804e84 xRingbufferSend + .text.xRingbufferReceive + 0x40804ef4 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40804ef4 xRingbufferReceive + .text.vRingbufferReturnItem + 0x40804f3e 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40804f3e vRingbufferReturnItem + .text.xRingbufferGetCurFreeSize + 0x40804fc0 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40804fc0 xRingbufferGetCurFreeSize + .text.vRingbufferGetInfo + 0x40805004 0x96 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40805004 vRingbufferGetInfo + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + .text.systimer_hal_init + 0x4080509a 0x1e esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + 0x4080509a systimer_hal_init + *libesp_rom.a:esp_rom_tlsf.*(.literal .literal.* .text .text.*) + .text.integrity_walker + 0x408050b8 0x66 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .text.tlsf_check_pool + 0x4080511e 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + 0x4080511e tlsf_check_pool + .text.tlsf_set_rom_patches + 0x40805140 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + 0x40805140 tlsf_set_rom_patches + *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) + .text.wdt_hal_init + 0x40805180 0x26c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + 0x40805180 wdt_hal_init + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x408053ec 0x92 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed + 0x4080547e 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4080547e _esp_error_check_failed + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + .text.esp_system_abort + 0x4080549e 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4080549e esp_system_abort + *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x408054a6 0x2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x408054a6 __ubsan_include + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *libesp_wifi.a:esp_adapter.*(.literal.wifi_clock_disable_wrapper .text.wifi_clock_disable_wrapper) + *libesp_wifi.a:esp_adapter.*(.literal.wifi_clock_enable_wrapper .text.wifi_clock_enable_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: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.prvGetDisinheritPriorityAfterTimeout + 0x408054a8 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueFull + 0x408054b8 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueEmpty + 0x408054e0 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataToQueue + 0x40805504 0x9a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataFromQueue + 0x4080559e 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvNotifyQueueSetContainer + 0x408055ca 0xde esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvUnlockQueue + 0x408056a8 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericReset + 0x4080573a 0xc8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4080573a xQueueGenericReset + .text.prvInitialiseNewQueue + 0x40805802 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericCreateStatic + 0x4080582a 0x9c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4080582a xQueueGenericCreateStatic + .text.xQueueGenericCreate + 0x408058c6 0x7e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x408058c6 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x40805944 0x46 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805944 xQueueGetMutexHolder + .text.xQueueCreateCountingSemaphore + 0x4080598a 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4080598a xQueueCreateCountingSemaphore + .text.xQueueGenericSend + 0x408059cc 0x1be esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x408059cc xQueueGenericSend + .text.prvInitialiseMutex + 0x40805b8a 0x48 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateMutex + 0x40805bd2 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805bd2 xQueueCreateMutex + .text.xQueueCreateMutexStatic + 0x40805bf2 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805bf2 xQueueCreateMutexStatic + .text.xQueueGiveMutexRecursive + 0x40805c16 0x5e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805c16 xQueueGiveMutexRecursive + .text.xQueueGiveFromISR + 0x40805c74 0x140 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805c74 xQueueGiveFromISR + .text.xQueueSemaphoreTake + 0x40805db4 0x184 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805db4 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x40805f38 0x62 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805f38 xQueueTakeMutexRecursive + .text.xQueueReceiveFromISR + 0x40805f9a 0x110 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40805f9a xQueueReceiveFromISR + .text.vQueueDelete + 0x408060aa 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x408060aa vQueueDelete + .text.vPortTaskWrapper + 0x408060e2 0x4e esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortTLSPointersDelCb + 0x40806130 0xa4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.pxPortInitialiseStack + 0x408061d4 0xe0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408061d4 pxPortInitialiseStack + .text.xPortInIsrContext + 0x408062b4 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408062b4 xPortInIsrContext + .text.xPortSetInterruptMaskFromISR + 0x408062be 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408062be xPortSetInterruptMaskFromISR + .text.vPortClearInterruptMaskFromISR + 0x408062d8 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408062d8 vPortClearInterruptMaskFromISR + .text.vPortEnterCritical + 0x408062e8 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408062e8 vPortEnterCritical + .text.vPortExitCritical + 0x40806318 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40806318 vPortExitCritical + .text.vPortYieldFromISR + 0x40806378 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40806378 vPortYieldFromISR + .text.vPortYield + 0x4080638c 0x3e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080638c vPortYield + .text.xPortStartScheduler + 0x408063ca 0x76 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x408063ca xPortStartScheduler + .text.vApplicationStackOverflowHook + 0x40806440 0x56 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40806440 vApplicationStackOverflowHook + .text.vPortTCBPreDeleteHook + 0x40806496 0xe esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40806496 vPortTCBPreDeleteHook + .text.pvPortMalloc + 0x408064a4 0x14 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x408064a4 pvPortMalloc + .text.vPortFree + 0x408064b8 0xe esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x408064b8 vPortFree + .text.xPortCheckValidTCBMem + 0x408064c6 0x36 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x408064c6 xPortCheckValidTCBMem + .text.xPortcheckValidStackMem + 0x408064fc 0x36 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x408064fc xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x40806532 0x84 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x40806532 vApplicationGetIdleTaskMemory + .text.vSystimerSetup + 0x408065b6 0x17a esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x408065b6 vSystimerSetup + .text.vPortSetupTimer + 0x40806730 0xe esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x40806730 vPortSetupTimer + .text.xPortSysTickHandler + 0x4080673e 0x32 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x4080673e xPortSysTickHandler + .text.SysTickIsrHandler + 0x40806770 0x78 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x40806770 SysTickIsrHandler + .text.vListInitialise + 0x408067e8 0x14 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x408067e8 vListInitialise + .text.vListInitialiseItem + 0x408067fc 0x6 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x408067fc vListInitialiseItem + .text.vListInsertEnd + 0x40806802 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40806802 vListInsertEnd + .text.vListInsert + 0x4080681a 0x32 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4080681a vListInsert + .text.uxListRemove + 0x4080684c 0x28 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4080684c uxListRemove + .text 0x40806874 0xd8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x4080687e rtos_int_enter + 0x408068e0 rtos_int_exit + *libfreertos.a:tasks.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .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.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + .text.prvResetNextTaskUnblockTime + 0x4080694c 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTCB + 0x4080697a 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvCheckTasksWaitingTermination + 0x408069e2 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvAddCurrentTaskToDelayedList + 0x40806a3a 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvIdleTask + 0x40806b2c 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvInitialiseNewTask + 0x40806b3e 0xde esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvInitialiseTaskLists + 0x40806c1c 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvAddNewTaskToReadyList + 0x40806cbe 0xfc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelete + 0x40806dba 0x104 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806dba vTaskDelete + .text.vTaskSuspendAll + 0x40806ebe 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806ebe vTaskSuspendAll + .text.xTaskGetTickCount + 0x40806ece 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806ece xTaskGetTickCount + .text.xTaskGetTickCountFromISR + 0x40806ed8 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806ed8 xTaskGetTickCountFromISR + .text.uxTaskGetNumberOfTasks + 0x40806ee2 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806ee2 uxTaskGetNumberOfTasks + .text.pcTaskGetName + 0x40806eec 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806eec pcTaskGetName + .text.xTaskIncrementTick + 0x40806f28 0x1ce esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40806f28 xTaskIncrementTick + .text.xTaskResumeAll + 0x408070f6 0x184 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x408070f6 xTaskResumeAll + .text.vTaskDelay + 0x4080727a 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080727a vTaskDelay + .text.vTaskSwitchContext + 0x408072cc 0x126 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x408072cc vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x408073f2 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x408073f2 vTaskPlaceOnEventList + .text.xTaskRemoveFromEventList + 0x4080743c 0x11c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080743c xTaskRemoveFromEventList + .text.vTaskInternalSetTimeOutState + 0x40807558 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807558 vTaskInternalSetTimeOutState + .text.xTaskCheckForTimeOut + 0x4080756e 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080756e xTaskCheckForTimeOut + .text.vTaskMissedYield + 0x40807642 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807642 vTaskMissedYield + .text.xTaskGetCurrentTaskHandle + 0x4080764e 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080764e xTaskGetCurrentTaskHandle + .text.xTaskGetSchedulerState + 0x40807658 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807658 xTaskGetSchedulerState + .text.xTaskPriorityInherit + 0x40807678 0x102 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807678 xTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x4080777a 0x104 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080777a xTaskPriorityDisinherit + .text.vTaskPriorityDisinheritAfterTimeout + 0x4080787e 0x120 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080787e vTaskPriorityDisinheritAfterTimeout + .text.pvTaskIncrementMutexHeldCount + 0x4080799e 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080799e pvTaskIncrementMutexHeldCount + .text.ulTaskGenericNotifyTake + 0x408079c0 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x408079c0 ulTaskGenericNotifyTake + .text.vTaskGenericNotifyGiveFromISR + 0x40807a98 0x186 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807a98 vTaskGenericNotifyGiveFromISR + .text.xTaskCreatePinnedToCore + 0x40807c1e 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807c1e xTaskCreatePinnedToCore + .text.xTaskCreateStaticPinnedToCore + 0x40807cdc 0x126 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807cdc xTaskCreateStaticPinnedToCore + .text.prvCreateIdleTasks + 0x40807e02 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTimerCreateTimerTask + 0x40807e62 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807e62 xTimerCreateTimerTask + .text.vTaskStartScheduler + 0x40807e66 0x72 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807e66 vTaskStartScheduler + .text.xTaskGetCoreID + 0x40807ed8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807ed8 xTaskGetCoreID + .text.xTaskGetIdleTaskHandleForCore + 0x40807edc 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807edc xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x40807f38 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807f38 xTaskGetCurrentTaskHandleForCore + .text.__getreent + 0x40807f72 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807f72 __getreent + .text.vTaskGetSnapshot + 0x40807f8c 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40807f8c vTaskGetSnapshot + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) + .text.s_update_cache_state + 0x40807fbe 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40807fbe s_update_cache_state + .text.s_get_cache_state + 0x40808046 0x8a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40808046 s_get_cache_state + .text.cache_hal_suspend + 0x408080d0 0x4e esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x408080d0 cache_hal_suspend + .text.cache_hal_resume + 0x4080811e 0x56 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4080811e cache_hal_resume + .text.cache_hal_is_cache_enabled + 0x40808174 0xe esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40808174 cache_hal_is_cache_enabled + .text.cache_hal_vaddr_to_cache_level_id + 0x40808182 0x58 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40808182 cache_hal_vaddr_to_cache_level_id + .text.cache_hal_invalidate_addr + 0x408081da 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x408081da cache_hal_invalidate_addr + .text.cache_hal_get_cache_line_size + 0x40808214 0x42 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40808214 cache_hal_get_cache_line_size + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) + *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.*) + .text.mmu_ll_check_valid_paddr_region + 0x40808256 0x9e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_check_entry_valid + 0x408082f4 0x44 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_find_entry_id_based_on_map_value + 0x40808338 0x58 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_entry_id_to_paddr_base + 0x40808390 0x6c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x408083fc 0x52 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x408083fc mmu_hal_pages_to_bytes + .text.mmu_hal_paddr_to_vaddr + 0x4080844e 0xd0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4080844e mmu_hal_paddr_to_vaddr + .text.mmu_hal_check_valid_ext_vaddr_region + 0x4080851e 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4080851e mmu_hal_check_valid_ext_vaddr_region + .text.mmu_hal_map_region + 0x4080854a 0x18e esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4080854a mmu_hal_map_region + .text.mmu_hal_unmap_region + 0x408086d8 0xce esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x408086d8 mmu_hal_unmap_region + .text.mmu_hal_vaddr_to_paddr + 0x408087a6 0xb8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x408087a6 mmu_hal_vaddr_to_paddr + *libhal.a:pmu_hal.*(.literal .literal.* .text .text.*) + .text.pmu_hal_hp_set_sleep_active_backup_enable + 0x4080885e 0x1e esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x4080885e pmu_hal_hp_set_sleep_active_backup_enable + .text.pmu_hal_hp_set_sleep_active_backup_disable + 0x4080887c 0x22 esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x4080887c pmu_hal_hp_set_sleep_active_backup_disable + .text.pmu_hal_hp_set_sleep_modem_backup_enable + 0x4080889e 0xe esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x4080889e pmu_hal_hp_set_sleep_modem_backup_enable + .text.pmu_hal_hp_set_sleep_modem_backup_disable + 0x408088ac 0x10 esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x408088ac pmu_hal_hp_set_sleep_modem_backup_disable + .text.pmu_hal_hp_set_modem_active_backup_enable + 0x408088bc 0xe esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x408088bc pmu_hal_hp_set_modem_active_backup_enable + .text.pmu_hal_hp_set_modem_active_backup_disable + 0x408088ca 0x10 esp-idf/hal/libhal.a(pmu_hal.c.obj) + 0x408088ca pmu_hal_hp_set_modem_active_backup_disable + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encrypt_ll_plaintext_save + 0x408088da 0x4a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .text.spi_flash_encryption_hal_enable + 0x40808924 0x1c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40808924 spi_flash_encryption_hal_enable + .text.spi_flash_encryption_hal_disable + 0x40808940 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40808940 spi_flash_encryption_hal_disable + .text.spi_flash_encryption_hal_prepare + 0x4080894c 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4080894c spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4080899c 0x32 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4080899c spi_flash_encryption_hal_done + .text.spi_flash_encryption_hal_destroy + 0x408089ce 0x12 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x408089ce spi_flash_encryption_hal_destroy + .text.spi_flash_encryption_hal_check + 0x408089e0 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x408089e0 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + .text.gpspi_flash_ll_set_read_mode + 0x408089ea 0xac esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text.gpspi_flash_ll_set_buffer_data + 0x40808a96 0x66 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text.gpspi_flash_ll_get_buffer_data + 0x40808afc 0x80 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x40808b7c 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808b7c spi_flash_hal_gpspi_poll_cmd_done + .text.spi_flash_hal_gpspi_device_config + 0x40808b88 0xd2 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808b88 spi_flash_hal_gpspi_device_config + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x40808c5a 0x124 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808c5a spi_flash_hal_gpspi_configure_host_io_mode + .text.spi_flash_hal_gpspi_common_command + 0x40808d7e 0x148 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808d7e spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x40808ec6 0xb4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808ec6 spi_flash_hal_gpspi_read + .text.spi_flash_hal_gpspi_supports_direct_write + 0x40808f7a 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808f7a spi_flash_hal_gpspi_supports_direct_write + .text.spi_flash_hal_gpspi_supports_direct_read + 0x40808f7e 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808f7e spi_flash_hal_gpspi_supports_direct_read + .text.spi_flash_hal_gpspi_check_status + 0x40808f82 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40808f82 spi_flash_hal_gpspi_check_status + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + .text.spimem_flash_ll_set_read_mode + 0x40808f90 0x86 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text.spimem_flash_ll_program_page + 0x40809016 0x80 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text.spimem_flash_ll_get_source_freq_mhz + 0x40809096 0xbc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_poll_cmd_done + 0x40809152 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809152 spi_flash_hal_poll_cmd_done + .text.spi_flash_hal_configure_host_io_mode + 0x4080915a 0x136 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4080915a spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x40809290 0x1dc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809290 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4080946c 0xe6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4080946c spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x40809552 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809552 spi_flash_hal_erase_chip + .text.spi_flash_hal_erase_sector + 0x40809574 0x4a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809574 spi_flash_hal_erase_sector + .text.spi_flash_hal_erase_block + 0x408095be 0x48 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x408095be spi_flash_hal_erase_block + .text.spi_flash_hal_program_page + 0x40809606 0x4e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809606 spi_flash_hal_program_page + .text.spi_flash_hal_set_write_protect + 0x40809654 0x2c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809654 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x40809680 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809680 spi_flash_hal_check_status + .text.spi_flash_hal_setup_read_suspend + 0x40809696 0xd6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809696 spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x4080976c 0x180 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4080976c spi_flash_hal_setup_auto_suspend_mode + .text.spi_flash_hal_setup_auto_resume_mode + 0x408098ec 0x3a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x408098ec spi_flash_hal_setup_auto_resume_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x40809926 0x72 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809926 spi_flash_hal_disable_auto_suspend_mode + .text.spi_flash_hal_disable_auto_resume_mode + 0x40809998 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809998 spi_flash_hal_disable_auto_resume_mode + .text.spi_flash_hal_device_config + 0x408099d4 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x408099d4 spi_flash_hal_device_config + .text.spi_flash_hal_resume + 0x40809a7c 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809a7c spi_flash_hal_resume + .text.spi_flash_hal_suspend + 0x40809a8c 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40809a8c spi_flash_hal_suspend + *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) + *libheap.a:multi_heap.*(.literal._multi_heap_lock .text._multi_heap_lock) + .text._multi_heap_lock + 0x40809a9c 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40809a9c _multi_heap_lock + *libheap.a:multi_heap.*(.literal._multi_heap_unlock .text._multi_heap_unlock) + .text._multi_heap_unlock + 0x40809ab8 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40809ab8 _multi_heap_unlock + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + .text.multi_heap_aligned_alloc_offs + 0x40809ad4 0x12 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40809ad4 multi_heap_aligned_alloc_offs + *libheap.a:multi_heap.*(.literal.multi_heap_in_rom_init .text.multi_heap_in_rom_init) + .text.multi_heap_in_rom_init + 0x40809ae6 0x16 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40809ae6 multi_heap_in_rom_init + *libieee802154.a:esp_ieee802154_ack.*(.literal.ieee802154_ack_config_pending_bit .text.ieee802154_ack_config_pending_bit) + *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_isr .text.ieee802154_isr) + *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_rx_frame_info_update .text.ieee802154_rx_frame_info_update) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_field_len .text.ieee802154_frame_get_security_field_len) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_payload_offset .text.ieee802154_frame_get_security_payload_offset) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_src_addr .text.ieee802154_frame_get_src_addr) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_security_header_offset .text.ieee802154_frame_security_header_offset) + *libieee802154.a:esp_ieee802154_frame.*(.literal.is_dst_panid_present .text.is_dst_panid_present) + *libieee802154.a:esp_ieee802154_frame.*(.literal.is_src_panid_present .text.is_src_panid_present) + *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_pending_mode .text.ieee802154_pib_get_pending_mode) + *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_rx_when_idle .text.ieee802154_pib_get_rx_when_idle) + *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_sec_update .text.ieee802154_sec_update) + *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_transmit_security_config .text.ieee802154_transmit_security_config) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_threshold .text.ieee802154_timer0_set_threshold) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_start .text.ieee802154_timer0_start) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_stop .text.ieee802154_timer0_stop) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_threshold .text.ieee802154_timer1_set_threshold) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_start .text.ieee802154_timer1_start) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_stop .text.ieee802154_timer1_stop) + *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_etm_channel_clear .text.ieee802154_etm_channel_clear) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + .text.esp_log_impl_lock + 0x40809afc 0x3c esp-idf/log/liblog.a(log_lock.c.obj) + 0x40809afc esp_log_impl_lock + .text.esp_log_impl_lock_timeout + 0x40809b38 0x46 esp-idf/log/liblog.a(log_lock.c.obj) + 0x40809b38 esp_log_impl_lock_timeout + .text.esp_log_impl_unlock + 0x40809b7e 0x26 esp-idf/log/liblog.a(log_lock.c.obj) + 0x40809b7e esp_log_impl_unlock + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + .text.esp_log_early_timestamp + 0x40809ba4 0x26 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x40809ba4 esp_log_early_timestamp + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + .text.esp_log_timestamp + 0x40809bca 0x54 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x40809bca esp_log_timestamp + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + .text.esp_log_write + 0x40809c1e 0x20 esp-idf/log/liblog.a(log_write.c.obj) + 0x40809c1e esp_log_write + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifiextrairam .wifiextrairam.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislpiram .wifislpiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + .text.abort 0x40809c3e 0x7e esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x40809c3e abort + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + .text.ra_to_str + 0x40809cbc 0x2c esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert_func + 0x40809ce8 0x108 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40809ce8 __assert_func + .text.newlib_include_assert_impl + 0x40809df0 0x2 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40809df0 newlib_include_assert_impl + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + .text.malloc 0x40809df2 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809df2 pvalloc + 0x40809df2 valloc + 0x40809df2 malloc + .text.free 0x40809e00 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e00 free + 0x40809e00 cfree + .text._malloc_r + 0x40809e0e 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e0e _malloc_r + .text._free_r 0x40809e1e 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e1e _free_r + .text._realloc_r + 0x40809e2e 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e2e _realloc_r + .text._calloc_r + 0x40809e40 0x3e esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e40 _calloc_r + .text.calloc 0x40809e7e 0x22 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809e7e calloc + .text.newlib_include_heap_impl + 0x40809ea0 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40809ea0 newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + .text.__atomic_fetch_or_8 + 0x40809ea2 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x40809ea2 __atomic_fetch_or_8 + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiextrairam .wifiextrairam.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislpiram .wifislpiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item .text.intr_handler_get_arg) + .text.intr_get_item + 0x40809ee6 0x38 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text._global_interrupt_handler + 0x40809f1e 0x3c esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x40809f1e _global_interrupt_handler + *libriscv.a:vectors.*(.literal .literal.* .text .text.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + .text.spi_flash_needs_reset_check + 0x40809f5a 0x22 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x40809f5a spi_flash_needs_reset_check + .text.spi_flash_set_erasing_flag + 0x40809f7c 0xa esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x40809f7c spi_flash_set_erasing_flag + .text.spi_flash_brownout_need_reset + 0x40809f86 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x40809f86 spi_flash_brownout_need_reset + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_status_hs + 0x40809fa6 0x40 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40809fa6 memspi_host_read_status_hs + .text.memspi_host_erase_chip + 0x40809fe6 0x28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40809fe6 memspi_host_erase_chip + .text.memspi_host_set_write_protect + 0x4080a00e 0x2e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a00e memspi_host_set_write_protect + .text.memspi_host_write_data_slicer + 0x4080a03c 0x42 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a03c memspi_host_write_data_slicer + .text.memspi_host_read_data_slicer + 0x4080a07e 0x36 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a07e memspi_host_read_data_slicer + .text.memspi_host_read_id_hs + 0x4080a0b4 0x8e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a0b4 memspi_host_read_id_hs + .text.memspi_host_flush_cache + 0x4080a142 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a142 memspi_host_flush_cache + .text.memspi_host_erase_sector + 0x4080a168 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a168 memspi_host_erase_sector + .text.memspi_host_erase_block + 0x4080a1c0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a1c0 memspi_host_erase_block + .text.memspi_host_program_page + 0x4080a218 0x62 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a218 memspi_host_program_page + .text.memspi_host_init_pointers + 0x4080a27a 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4080a27a memspi_host_init_pointers + *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.*) + .text.spi_flash_chip_generic_detect_size + 0x4080a2c8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a2c8 spi_flash_chip_generic_detect_size + .text.spi_flash_chip_generic_probe + 0x4080a308 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a308 spi_flash_chip_generic_probe + .text.spi_flash_chip_generic_reset + 0x4080a30c 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a30c spi_flash_chip_generic_reset + .text.spi_flash_chip_generic_erase_chip + 0x4080a36c 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a36c spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_erase_sector + 0x4080a3ee 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a3ee spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x4080a478 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a478 spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x4080a502 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a502 spi_flash_chip_generic_page_program + .text.spi_flash_chip_generic_set_write_protect + 0x4080a56e 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a56e spi_flash_chip_generic_set_write_protect + .text.spi_flash_chip_generic_read_reg + 0x4080a5bc 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a5bc spi_flash_chip_generic_read_reg + .text.spi_flash_chip_generic_wait_idle + 0x4080a5d0 0xae esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a5d0 spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_config_host_io_mode + 0x4080a67e 0x164 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a67e spi_flash_chip_generic_config_host_io_mode + .text.spi_flash_chip_generic_write_encrypted + 0x4080a7e2 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a7e2 spi_flash_chip_generic_write_encrypted + .text.spi_flash_chip_generic_get_caps + 0x4080a8cc 0x92 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a8cc spi_flash_chip_generic_get_caps + .text.spi_flash_common_read_qe_sr + 0x4080a95e 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x4080a99a 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4080a9cc 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080a9cc spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x4080aa10 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080aa10 spi_flash_common_write_status_16b_wrsr + .text.spi_flash_chip_generic_read + 0x4080aa24 0xe0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080aa24 spi_flash_chip_generic_read + .text.spi_flash_chip_generic_write + 0x4080ab04 0xba esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ab04 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4080abbe 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080abbe spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4080ac00 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ac00 spi_flash_chip_generic_yield + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4080ac46 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ac46 spi_flash_chip_generic_suspend_cmd_conf + .text.spi_flash_chip_generic_read_unique_id + 0x4080acc0 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080acc0 spi_flash_chip_generic_read_unique_id + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4080ad70 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ad70 spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x4080ad86 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ad86 spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_set_io_mode + 0x4080ada6 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ada6 spi_flash_common_set_io_mode + .text.spi_flash_chip_generic_set_io_mode + 0x4080ae4e 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080ae4e spi_flash_chip_generic_set_io_mode + *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.*) + +.iram0.text_end + 0x4080ae70 0x0 + 0x4080ae70 . = ALIGN (0x4) + 0x4080ae70 . = ALIGN (0x4) + 0x4080ae70 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4080ae70 0x0 + 0x4080ae70 . = ALIGN (0x10) + *fill* 0x4080ae70 0x0 + 0x4080ae70 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x4080ae70 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x4080ae70 _coredump_iram_end = ABSOLUTE (.) + 0x4080ae70 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4080ae70 0x0 + 0x4080ae70 . = ALIGN (0x10) + 0x4080ae70 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x4080ae70 _iram_bss_end = ABSOLUTE (.) + 0x4080ae70 . = ALIGN (0x10) + 0x4080ae70 _iram_end = ABSOLUTE (.) + +.dram0.data 0x4080ae70 0x17e5 + 0x4080ae70 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + .data1 0x4080ae70 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + 0x4080ae70 rv_core_critical_regs_frame + 0x4080b674 __global_pointer$ = (. + 0x800) + *(.sdata) + .sdata 0x4080ae74 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + 0x4080ae74 environ + .sdata 0x4080ae78 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + 0x4080ae78 _impure_ptr + *(.sdata.*) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH6 + 0x4080ae7c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080ae7c ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH6 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH5 + 0x4080ae84 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080ae84 ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH5 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH4 + 0x4080ae8c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080ae8c ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH4 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH3 + 0x4080ae94 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080ae94 ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH3 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH2 + 0x4080ae9c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080ae9c ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH2 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH1 + 0x4080aea4 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aea4 ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH1 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH0 + 0x4080aeac 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aeac ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH0 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x4080aeb4 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aeb4 ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x4080aebc 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aebc ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x4080aec4 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aec4 ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x4080aecc 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x4080aecc ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + .sdata.s_panic_uart + 0x4080aed4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sdata.rtc_wdt_ctx + 0x4080aed8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sdata.wdt0_context + 0x4080aee0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .sdata.s_log_print_func + 0x4080aee8 0x4 esp-idf/log/liblog.a(log_write.c.obj) + .sdata.esp_log_default_level + 0x4080aeec 0x4 esp-idf/log/liblog.a(log_level.c.obj) + 0x4080aeec esp_log_default_level + .sdata.malloc_alwaysinternal_limit + 0x4080aef0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .sdata.multi_heap_os_funcs + 0x4080aef4 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4080aef4 multi_heap_os_funcs + .sdata.first_call.0 + 0x4080aefc 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x4080aefd 0x3 + .sdata.pau_context.0 + 0x4080af00 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .sdata.uart_selectlock + 0x4080af04 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .sdata._gpio_hal + 0x4080af0c 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .sdata.esp_flash_registered_chips + 0x4080af10 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x4080af10 esp_flash_registered_chips + .sdata.default_registered_chips + 0x4080af14 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + *fill* 0x4080af1c 0x4 + .sdata.s_reserved_pin_mask + 0x4080af20 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .sdata.s_previous_init_code + 0x4080af28 0x4 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + *fill* 0x4080af2c 0x4 + .data.s_config + 0x4080af30 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.dummy.9 0x4080afb8 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .data.s_stub_table + 0x4080afe4 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.timestamp_id + 0x4080b080 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x4080b080 timestamp_id + .data.s_context + 0x4080b090 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data.uart_context + 0x4080b0d8 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data.s_ctx 0x4080b108 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .data.s_fd_table + 0x4080b138 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.g_coex_adapter_funcs + 0x4080b1f8 0x50 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4080b1f8 g_coex_adapter_funcs + .data.gpio_context + 0x4080b248 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data.libcoexist_reversion_git + 0x4080b268 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + 0x4080b268 libcoexist_reversion_git + .data.g_coex_param + 0x4080b26c 0x14 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x4080b26c g_coex_param + .data.coex_schm_all_default + 0x4080b280 0xa C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + 0x4080b280 coex_schm_all_default + *fill* 0x4080b28a 0x2 + .data.coex_schm_env + 0x4080b28c 0x3c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + 0x4080b28c coex_schm_env + .data 0x4080b2c8 0xc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + 0x4080b2c8 __sglue + .data 0x4080b2d4 0xf0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + 0x4080b2d4 _impure_data + *(.dram1 .dram1.*) + .dram1.2 0x4080b3c4 0x2b esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x4080b3ef 0x1 + .dram1.0 0x4080b3f0 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .dram1.18 0x4080b3f4 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .dram1.13 0x4080b41c 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .dram1.12 0x4080b4a0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .dram1.3 0x4080b4a8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .dram1.2 0x4080b4b0 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .dram1.1 0x4080b4dc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .dram1.0 0x4080b4e0 0x350 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .dram1.0 0x4080b830 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080b830 FreeRTOS_openocd_params + .dram1.0 0x4080b838 0x50 esp-idf/freertos/libfreertos.a(port.c.obj) + .dram1.0 0x4080b888 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.0 0x4080b88c 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4080b88c g_flash_guard_default_ops + .dram1.2 0x4080b894 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4080b894 rom_spiflash_api_funcs + .dram1.1 0x4080b898 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x4080b8a8 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x4080b8b2 0x2 + .dram1.2 0x4080b8b4 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x4080b8d4 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.16 0x4080b904 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.15 0x4080b92c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.5 0x4080b93c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4080b93c esp_flash_noos_functions + .dram1.5 0x4080b964 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080b964 spi_flash_chip_generic_timeout + .dram1.4 0x4080b978 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x4080b990 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080b990 rom_flash_chip_dummy_hpm + .dram1.2 0x4080b994 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080b994 rom_flash_chip_dummy + .dram1.1 0x4080b998 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4080b99e 0x2 + .dram1.0 0x4080b9a0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4080b9a6 0x2 + .dram1.0 0x4080b9a8 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.0 0x4080ba00 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x4080ba19 0x3 + .dram1.0 0x4080ba1c 0x4 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .dram1.1 0x4080ba20 0x10 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x4080ba20 coex_env + .dram1.2 0x4080ba30 0x2f C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x4080ba30 coex_pti_tab + *fill* 0x4080ba5f 0x1 + .dram1.6 0x4080ba60 0x22 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + *fill* 0x4080ba82 0x2 + .dram1.7 0x4080ba84 0x20 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .dram1.1 0x4080baa4 0x2e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + *fill* 0x4080bad2 0x2 + .dram1.7 0x4080bad4 0x27 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + *fill* 0x4080bafb 0x1 + .dram1.2 0x4080bafc 0x4 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + 0x4080bb00 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x4080bb00 _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.*) + *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:save.*(.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_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:pmu_sleep.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.pmu_sleep_analog_init.str1.4 + 0x4080bb00 0x45 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.pmu_sleep_enable_regdma_backup.str1.4 + 0x4080bb00 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.8 + 0x4080bb00 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .rodata.__func__.9 + 0x4080bb20 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x4080bb3f 0x1 + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x4080bb40 0x7cd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x6a (size before relaxing) + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x4080c30d 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_bbpll_configure.str1.4 + 0x4080c30d 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x4080c30d 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x4080c30d 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_ahb_freq_get.str1.4 + 0x4080c30d 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x4080c30d 0x3 + .rodata.__func__.4 + 0x4080c310 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x4080c32a 0x2 + .rodata.__func__.2 + 0x4080c32c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x4080c346 0x2 + .rodata.__func__.0 + 0x4080c348 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_cache_aligned_malloc_internal.str1.4 + 0x4080c362 0x5b esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + *fill* 0x4080c362 0x2 + .rodata.__FUNCTION__.0 + 0x4080c364 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_tlsf.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_wdt.*(.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 + 0x4080c37c 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x4080c37c 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.s_update_cache_state.str1.4 + 0x4080c37c 0x5a esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.cache_hal_get_cache_line_size.str1.4 + 0x4080c37c 0x23 esp-idf/hal/libhal.a(cache_hal.c.obj) + .rodata.__func__.0 + 0x4080c37c 0x1e esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x4080c39a 0x2 + .rodata.__func__.3 + 0x4080c39c 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x4080c3ad 0x3 + .rodata.__func__.4 + 0x4080c3b0 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x4080c3c2 0x2 + .rodata.__func__.7 + 0x4080c3c4 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x4080c3d6 0x2 + .rodata.__func__.8 + 0x4080c3d8 0x15 esp-idf/hal/libhal.a(cache_hal.c.obj) + *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_check_entry_valid.str1.4 + 0x4080c3ed 0x51 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_pages_to_bytes.str1.4 + 0x4080c3ed 0x2a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x4080c3ed 0x32 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_map_region.str1.4 + 0x4080c3ed 0xd5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x4080c3ed 0x5f esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c3ed 0x3 + .rodata.__func__.1 + 0x4080c3f0 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c407 0x1 + .rodata.__func__.2 + 0x4080c408 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c426 0x2 + .rodata.__func__.3 + 0x4080c428 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c441 0x3 + .rodata.__func__.4 + 0x4080c444 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c45b 0x1 + .rodata.__func__.5 + 0x4080c45c 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c471 0x3 + .rodata.__func__.8 + 0x4080c474 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4080c487 0x1 + .rodata.__func__.10 + 0x4080c488 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libhal.a:pmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x4080c49f 0x81 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x4080c49f 0x1 + .rodata.__func__.0 + 0x4080c4a0 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spimem_flash_ll_get_source_freq_mhz.str1.4 + 0x4080c4c4 0x42 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .rodata.__func__.0 + 0x4080c4c4 0x24 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.4 + 0x4080c4e8 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.4 + 0x4080c4e8 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.*) + *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 + 0x4080c4e8 0x1a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x4080c4e8 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x4080c4e8 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__.0 + 0x4080c4e8 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x4080c501 0x3 + .rodata.__func__.1 + 0x4080c504 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__.2 + 0x4080c51c 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x4080c535 0x3 + .srodata.TAG 0x4080c538 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x4080c53f 0x1 + .rodata.esp_flash_gpspi_host + 0x4080c540 0x58 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.*) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x4080c598 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x4080c598 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x4080c598 0x55 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x4080c598 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.__func__.0 + 0x4080c598 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4080c5c1 0x3 + .rodata.esp_flash_chip_generic + 0x4080c5c4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4080c5c4 esp_flash_chip_generic + .srodata.chip_name + 0x4080c640 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x4080c648 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.*) + *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.*) + 0x4080c655 _data_end = ABSOLUTE (.) + +.noinit 0x4080c655 0x3 + 0x4080c658 . = ALIGN (0x4) + *fill* 0x4080c655 0x3 + 0x4080c658 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x4080c658 . = ALIGN (0x4) + 0x4080c658 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x4080c660 0x1008 + 0x4080c660 . = ALIGN (0x8) + 0x4080c660 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.app_elf_sha256_str + 0x4080c660 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x4080c660 app_elf_sha256_str + *fill* 0x4080c66a 0x2 + .bss.shutdown_handlers + 0x4080c66c 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.heap_tlsf_patch_table_ptr + 0x4080c680 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + 0x4080c680 heap_tlsf_patch_table_ptr + .bss.s_log_cache + 0x4080c6d0 0xf8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.ref_counts + 0x4080c7c8 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4080c7f1 0x3 + .bss.s_dslp_cb + 0x4080c7f4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_rtc_io_status + 0x4080c800 0xc esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .bss.xSuspendedTaskList + 0x4080c80c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x4080c820 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x4080c834 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x4080c848 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x4080c85c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x4080c870 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4080ca64 0xc + .bss.xIsrStack + 0x4080ca70 0x600 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080ca70 xIsrStack + .bss.systimer_hal.1 + 0x4080d070 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.s_common_recursive_mutex + 0x4080d07c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4080d07c __lock___atexit_recursive_mutex + 0x4080d07c __lock___sinit_recursive_mutex + 0x4080d07c __lock___sfp_recursive_mutex + 0x4080d07c __lock___env_recursive_mutex + 0x4080d07c __lock___malloc_recursive_mutex + .bss.s_common_mutex + 0x4080d0d0 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4080d0d0 __lock___at_quick_exit_mutex + 0x4080d0d0 __lock___tz_mutex + 0x4080d0d0 __lock___arc4random_mutex + 0x4080d0d0 __lock___dd_hash_mutex + .bss.systimer_hal + 0x4080d124 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.p_uart_obj + 0x4080d130 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss.s_vfs 0x4080d13c 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_intr_handlers + 0x4080d15c 0x100 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .bss.s_mmu_ctx + 0x4080d25c 0x2c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.tick_cb 0x4080d288 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x4080d2a8 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.init_context + 0x4080d2c8 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_calibrated_freq + 0x4080d2d4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_adc_cali_chan_compens + 0x4080d2e0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_cali_param + 0x4080d350 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_atten1_single + 0x4080d360 0x1c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .bss.s_coex_rom_data_init + 0x4080d37c 0x1 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + *fill* 0x4080d37d 0x3 + .bss 0x4080d380 0x138 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + 0x4080d380 __sf + *(.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) + .sbss.s_burn_counter + 0x4080d4b8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .sbss.s_reset_reason + 0x4080d4bc 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .sbss.s_usbserial_timeout + 0x4080d4c0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sbss.g_panic_abort_details + 0x4080d4c4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4080d4c4 g_panic_abort_details + .sbss.g_panic_abort + 0x4080d4c8 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4080d4c8 g_panic_abort + *fill* 0x4080d4c9 0x7 + .sbss.g_startup_time + 0x4080d4d0 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4080d4d0 g_startup_time + .sbss.g_exc_frames + 0x4080d4d8 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x4080d4d8 g_exc_frames + .sbss.s_poison_check_region + 0x4080d4dc 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .sbss.base.0 0x4080d4e0 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .sbss.s_log_tags + 0x4080d4e4 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) + .sbss.s_log_cache_misses + 0x4080d4e8 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .sbss.s_log_cache_entry_count + 0x4080d4ec 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .sbss.s_log_cache_max_generation + 0x4080d4f0 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .sbss.s_log_mutex + 0x4080d4f4 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + .sbss.alloc_failed_callback + 0x4080d4f8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .sbss.registered_heaps + 0x4080d4fc 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4080d4fc registered_heaps + .sbss.non_iram_int_disabled_flag + 0x4080d500 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4080d501 0x3 + .sbss.non_iram_int_disabled + 0x4080d504 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.non_iram_int_mask + 0x4080d508 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.vector_desc_head + 0x4080d50c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.s_bbpll_digi_consumers_ref_count + 0x4080d510 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .sbss.s_cur_pll_freq + 0x4080d514 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .sbss.s_pmu_sleep_regdma_backup_enabled + 0x4080d518 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + *fill* 0x4080d519 0x3 + .sbss.s_pwdet_power_on_cnt + 0x4080d51c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .sbss.pau_hal.1 + 0x4080d520 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .sbss.uxSchedulerSuspended + 0x4080d524 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xIdleTaskHandle + 0x4080d528 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xNextTaskUnblockTime + 0x4080d52c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxTaskNumber + 0x4080d530 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xNumOfOverflows + 0x4080d534 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xYieldPending + 0x4080d538 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xPendedTicks + 0x4080d53c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xSchedulerRunning + 0x4080d540 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxTopReadyPriority + 0x4080d544 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xTickCount + 0x4080d548 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxCurrentNumberOfTasks + 0x4080d54c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxDeletedTasksWaitingCleanUp + 0x4080d550 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.pxOverflowDelayedTaskList + 0x4080d554 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.pxDelayedTaskList + 0x4080d558 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.pxCurrentTCBs + 0x4080d55c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4080d55c pxCurrentTCBs + .sbss.xIsrStackBottom + 0x4080d560 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d560 xIsrStackBottom + .sbss.xIsrStackTop + 0x4080d564 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d564 xIsrStackTop + .sbss.xPortSwitchFlag + 0x4080d568 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d568 xPortSwitchFlag + .sbss.port_uxOldInterruptState + 0x4080d56c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d56c port_uxOldInterruptState + .sbss.port_uxCriticalNesting + 0x4080d570 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d570 port_uxCriticalNesting + .sbss.port_uxInterruptNesting + 0x4080d574 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d574 port_uxInterruptNesting + .sbss.port_xSchedulerRunning + 0x4080d578 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4080d578 port_xSchedulerRunning + .sbss.s_handled_systicks + 0x4080d57c 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .sbss.s_time_lock + 0x4080d580 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x4080d584 0x4 + .sbss.s_adjtime_total_correction_us + 0x4080d588 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .sbss.s_adjtime_start_us + 0x4080d590 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .sbss.s_boot_time_lock + 0x4080d598 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x4080d59c 0x4 + .sbss.s_microseconds_offset + 0x4080d5a0 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4080d5a0 s_microseconds_offset + .sbss.s_keys 0x4080d5a8 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4080d5a8 s_keys + *fill* 0x4080d5ac 0x4 + .sbss.s_correction_us + 0x4080d5b0 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .sbss.s_alarm_handler + 0x4080d5b8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sbss.s_timer_interrupt_handle + 0x4080d5bc 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sbss.s_uart_select_count + 0x4080d5c0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .sbss.s_registered_select_num + 0x4080d5c8 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .sbss.s_registered_selects + 0x4080d5cc 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .sbss.remaining_allowed_no_sof_ticks + 0x4080d5d0 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .sbss.s_usb_serial_jtag_conn_status + 0x4080d5d4 0x1 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + *fill* 0x4080d5d5 0x3 + .sbss.s_registered_select_num + 0x4080d5d8 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .sbss.s_registered_selects + 0x4080d5dc 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .sbss.p_usb_serial_jtag_obj + 0x4080d5e0 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .sbss.vfs_console + 0x4080d5e4 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .sbss.primary_vfs + 0x4080d5ec 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .sbss.secondary_vfs + 0x4080d5f0 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .sbss.s_fd_table_lock + 0x4080d5f4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .sbss.s_vfs_count + 0x4080d5f8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .sbss.g_fds 0x4080d5fc 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .sbss.flash_erasing + 0x4080d600 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .sbss.flash_brownout_needs_reset + 0x4080d601 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + *fill* 0x4080d602 0x2 + .sbss.s_flash_op_cache_state + 0x4080d604 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .sbss.esp_flash_default_chip + 0x4080d60c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x4080d60c esp_flash_default_chip + .sbss.reason 0x4080d610 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .sbss.iwdt_context + 0x4080d614 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .sbss.p_twdt_obj + 0x4080d61c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .sbss.g_twdt_isr + 0x4080d620 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4080d620 g_twdt_isr + *fill* 0x4080d621 0x3 + .sbss.ctx 0x4080d624 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .sbss.ref.1 0x4080d62c 0x4 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .sbss.s_adc_digi_ctrlr_cnt + 0x4080d630 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .sbss.adc2_lock + 0x4080d634 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .sbss.adc1_lock + 0x4080d638 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .sbss.s_timer_task + 0x4080d63c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .sbss.s_timers + 0x4080d640 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .sbss._ZN3nvs4Page8SEC_SIZEE + 0x4080d644 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4080d644 nvs::Page::SEC_SIZE + .sbss.clk_src_freq_hz + 0x4080d648 0x4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .sbss.s_partition_list_lock + 0x4080d64c 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .sbss.s_partition_list + 0x4080d650 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .sbss.curr_partition.2 + 0x4080d654 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .sbss._ZL4init + 0x4080d658 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .sbss._ZN17__eh_globals_init7_S_initE + 0x4080d65c 0x1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + 0x4080d65c __eh_globals_init::_S_init + *fill* 0x4080d65d 0x3 + .sbss 0x4080d660 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .sbss 0x4080d664 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + 0x4080d664 __stdio_exit_handler + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + 0x4080d668 . = ALIGN (0x8) + 0x4080d668 _bss_end = ABSOLUTE (.) + +.flash.text 0x42000020 0x13632 + 0x42000020 _stext = . + 0x42000020 _instruction_reserved_start = ABSOLUTE (.) + 0x42000020 _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.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libheap.a:multi_heap.* *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_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_phy.a:phy_init.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *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.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libheap.a:multi_heap.* *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_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_phy.a:phy_init.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *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.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libheap.a:multi_heap.* *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_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_phy.a:phy_init.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *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.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libheap.a:multi_heap.* *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_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_phy.a:phy_init.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .text.esp_app_format_init_elf_sha256 + 0x42000020 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_elf_sha256 + 0x42000090 0x50 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x42000090 esp_app_get_elf_sha256 + .text.__esp_system_init_fn_init_show_app_info + 0x420000e0 0x152 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.init_efuse_secure + 0x42000232 0x4 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.__esp_system_init_fn_init_efuse_check + 0x42000236 0x12 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.__esp_system_init_fn_init_efuse_show_app_info + 0x42000248 0xe6 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.__esp_system_init_fn_init_efuse + 0x4200032e 0x4c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.esp_efuse_startup_include_func + 0x4200037a 0x2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x4200037a esp_efuse_startup_include_func + .text.esp_efuse_read_field_blob + 0x4200037c 0x7e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4200037c esp_efuse_read_field_blob + .text.esp_efuse_get_field_size + 0x420003fa 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x420003fa esp_efuse_get_field_size + .text.esp_efuse_check_errors + 0x4200041c 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4200041c esp_efuse_check_errors + .text.get_mask + 0x42000428 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.check_range_of_bits + 0x42000444 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x42000456 0x18e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x42000456 esp_efuse_utility_process + .text.esp_efuse_utility_get_number_of_items + 0x420005e4 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420005e4 esp_efuse_utility_get_number_of_items + .text.esp_efuse_utility_read_reg + 0x420005f4 0x78 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420005f4 esp_efuse_utility_read_reg + .text.esp_efuse_utility_fill_buff + 0x4200066c 0xea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4200066c esp_efuse_utility_fill_buff + .text.esp_efuse_utility_count_once + 0x42000756 0x54 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x42000756 esp_efuse_utility_count_once + .text.esp_efuse_utility_check_errors + 0x420007aa 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420007aa esp_efuse_utility_check_errors + .text.esp_register_shutdown_handler + 0x420007ae 0x3e esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x420007ae esp_register_shutdown_handler + .text.esp_restart + 0x420007ec 0x36 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x420007ec esp_restart + .text.__esp_system_init_fn_init_show_cpu_freq + 0x42000822 0x78 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.__esp_system_init_fn_init_brownout + 0x4200089a 0xe esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.__esp_system_init_fn_init_newlib_time + 0x420008a8 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.__esp_system_init_fn_init_flash + 0x420008b8 0x42 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.__esp_system_init_fn_init_coexist + 0x420008fa 0x18 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.__esp_system_init_fn_init_disable_rtc_wdt + 0x42000912 0x3c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .text.esp_system_include_startup_funcs + 0x4200094e 0x2 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4200094e esp_system_include_startup_funcs + .text.core_intr_matrix_clear + 0x42000950 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.esp_brownout_init + 0x4200097a 0x66 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x4200097a esp_brownout_init + .text.periph_ll_get_clk_en_mask + 0x420009e0 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.periph_ll_get_rst_en_mask + 0x42000a10 0x1a2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.periph_ll_get_clk_en_reg + 0x42000bb2 0x200 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.periph_ll_get_rst_en_reg + 0x42000db2 0x200 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.periph_ll_disable_clk_set_rst + 0x42000fb2 0x48 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.select_rtc_slow_clk + 0x42000ffa 0xf4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.esp_rtc_init + 0x420010ee 0x2c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x420010ee esp_rtc_init + .text.esp_clk_init + 0x4200111a 0x19e esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x4200111a esp_clk_init + .text.esp_perip_clk_init + 0x420012b8 0x354 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x420012b8 esp_perip_clk_init + .text.get_reset_reason + 0x4200160c 0xca esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text.esp_reset_reason_get_hint + 0x420016d6 0x24 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x420016d6 esp_reset_reason_get_hint + .text.esp_reset_reason_init + 0x420016fa 0x32 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text.esp_cache_err_panic_string + 0x4200172c 0x1a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x4200172c esp_cache_err_panic_string + .text.esp_cache_err_has_active_err + 0x42001746 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x42001746 esp_cache_err_has_active_err + .text.esp_cache_err_int_init + 0x42001756 0x64 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x42001756 esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x420017ba 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x420017ba esp_cache_err_get_cpuid + .text.semihosting_call_noerrno + 0x420017be 0xe esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char_uart + 0x420017cc 0x5c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char_usb_serial_jtag + 0x42001828 0x90 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.disable_all_wdts + 0x420018b8 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char + 0x42001920 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x42001920 panic_print_char + .text.panic_print_str + 0x42001936 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x42001936 panic_print_str + .text.print_abort_details + 0x4200195c 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_hex + 0x42001970 0x3a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x42001970 panic_print_hex + .text.panic_print_dec + 0x420019aa 0x54 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420019aa panic_print_dec + .text.esp_panic_handler_reconfigure_wdts + 0x420019fe 0xa4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420019fe esp_panic_handler_reconfigure_wdts + .text.esp_panic_handler + 0x42001aa2 0x220 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x42001aa2 esp_panic_handler + .text.do_global_ctors + 0x42001cc2 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_system_init_fn + 0x42001d08 0x7c esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_core_init + 0x42001d84 0xe esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_secondary_init + 0x42001d92 0xe esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.start_cpu0_default + 0x42001da0 0x10 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x42001da0 start_cpu0 + .text.frame_to_panic_info + 0x42001db0 0x5c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.panic_handler + 0x42001e0c 0x7c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.print_state_for_core + 0x42001e88 0x28 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.print_state + 0x42001eb0 0x18 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.panic_restart + 0x42001ec8 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x42001ec8 panic_restart + .text.panic_print_register_array + 0x42001ed4 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_print_basic_backtrace + 0x42001f44 0x92 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.print_assist_debug_details + 0x42001fd6 0xd8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.print_cache_err_details + 0x420020ae 0x2e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_print_registers + 0x420020dc 0x6c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420020dc panic_print_registers + .text.panic_soc_check_pseudo_cause + 0x42002148 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42002148 panic_soc_check_pseudo_cause + .text.panic_soc_fill_info + 0x4200217c 0x8a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4200217c panic_soc_fill_info + .text.panic_arch_fill_info + 0x42002206 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42002206 panic_arch_fill_info + .text.panic_print_backtrace + 0x4200223a 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4200223a panic_print_backtrace + .text.panic_get_cause + 0x42002246 0x6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42002246 panic_get_cause + .text.panic_prepare_frame_from_ctx + 0x4200224c 0x2a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4200224c panic_prepare_frame_from_ctx + .text.__esp_system_init_fn_esp_hw_stack_guard_init + 0x42002276 0x7e esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .text.esp_hw_stack_guard_get_bounds + 0x420022f4 0x16 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + 0x420022f4 esp_hw_stack_guard_get_bounds + .text.esp_hw_stack_guard_get_fired_cpu + 0x4200230a 0x18 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + 0x4200230a esp_hw_stack_guard_get_fired_cpu + .text.esp_hw_stack_guard_get_pc + 0x42002322 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + 0x42002322 esp_hw_stack_guard_get_pc + .text.esp_rom_include_multi_heap_patch + 0x4200232a 0x2 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + 0x4200232a esp_rom_include_multi_heap_patch + .text.uart_hal_rxfifo_rst + 0x4200232c 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x4200232c uart_hal_rxfifo_rst + .text.uart_hal_write_txfifo + 0x4200236e 0x62 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x4200236e uart_hal_write_txfifo + .text.brownout_ll_set_threshold + 0x420023d0 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text.brownout_hal_config + 0x420023f0 0xb8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x420023f0 brownout_hal_config + .text.log_level_get + 0x420024a8 0x4e esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_get_timeout + 0x420024f6 0xe esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x420024f6 esp_log_level_get_timeout + .text.esp_log_linked_list_get_level + 0x42002504 0x46 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x42002504 esp_log_linked_list_get_level + .text.fix_cache_generation_overflow + 0x4200254a 0x32 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.heap_swap + 0x4200257c 0x2a esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.heap_bubble_down + 0x420025a6 0x4c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_get_level + 0x420025f2 0x100 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x420025f2 esp_log_cache_get_level + .text.esp_log_cache_add + 0x420026f2 0x8c esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x420026f2 esp_log_cache_add + .text.heap_caps_match + 0x4200277e 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4200277e heap_caps_match + .text.heap_caps_get_info + 0x420027ac 0x86 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x420027ac heap_caps_get_info + .text.heap_caps_get_largest_free_block + 0x42002832 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x42002832 heap_caps_get_largest_free_block + .text.register_heap + 0x42002844 0x4e esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_enable_nonos_stack_heaps + 0x42002892 0x36 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x42002892 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x420028c8 0x3f0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x420028c8 heap_caps_init + .text.__esp_system_init_fn_init_heap + 0x42002cb8 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.s_get_num_reserved_regions + 0x42002cc6 0x18 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.s_compare_reserved_regions + 0x42002cde 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.s_prepare_reserved_regions + 0x42002ce6 0x11e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.soc_get_available_memory_region_max_count + 0x42002e04 0x16 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x42002e04 soc_get_available_memory_region_max_count + .text.soc_get_available_memory_regions + 0x42002e1a 0x168 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x42002e1a soc_get_available_memory_regions + .text.__esp_system_init_fn_esp_security_init + 0x42002f82 0xe esp-idf/esp_security/libesp_security.a(init.c.obj) + .text.esp_security_init_include_impl + 0x42002f90 0x2 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x42002f90 esp_security_init_include_impl + .text.esp_crypto_dpa_set_level + 0x42002f92 0x4c esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .text.esp_crypto_dpa_protection_startup + 0x42002fde 0xe esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + 0x42002fde esp_crypto_dpa_protection_startup + .text.calc_checksum + 0x42002fec 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x42003016 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x42003016 esp_clk_slowclk_cal_get + .text.esp_rtc_get_time_us + 0x4200301e 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x4200301e esp_rtc_get_time_us + .text.esp_clk_slowclk_cal_set + 0x42003124 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x42003124 esp_clk_slowclk_cal_set + .text.insert_vector_desc + 0x4200313c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x42003194 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x420031ba 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_source + 0x4200324a 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x420032d0 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_available_int + 0x42003394 0x15a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_ptr_in_isr_region + 0x420034ee 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x420034ee esp_intr_ptr_in_isr_region + .text.esp_intr_alloc_intrstatus + 0x42003526 0x410 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x42003526 esp_intr_alloc_intrstatus + .text.esp_intr_alloc + 0x42003936 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x42003936 esp_intr_alloc + .text.rtcio_ll_wakeup_is_enabled + 0x4200394e 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x42003996 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x42003996 esp_sleep_config_gpio_isolate + .text.esp_sleep_enable_gpio_switch + 0x42003a3c 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x42003a3c esp_sleep_enable_gpio_switch + .text.__esp_system_init_fn_esp_sleep_startup_init + 0x42003acc 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_deep_sleep_wakeup_io_reset + 0x42003ade 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x42003ade esp_deep_sleep_wakeup_io_reset + .text.esp_sleep_gpio_include + 0x42003bdc 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x42003bdc esp_sleep_gpio_include + .text.modem_clock_domain_clk_gate_disable + 0x42003bde 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x42003bde modem_clock_domain_clk_gate_disable + .text.modem_clock_deselect_all_module_lp_clock_source + 0x42003ca2 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x42003ca2 modem_clock_deselect_all_module_lp_clock_source + .text.modem_clock_select_lp_clock_source + 0x42003cd6 0x260 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + 0x42003cd6 modem_clock_select_lp_clock_source + .text.pmu_power_domain_force_default + 0x42003f36 0x11a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text.pmu_hp_system_param_default + 0x42004050 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text.pmu_lp_system_param_default + 0x420040de 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text.pmu_hp_system_init + 0x42004150 0x46e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + 0x42004150 pmu_hp_system_init + .text.pmu_hp_system_init_default + 0x420045be 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text.pmu_lp_system_init + 0x4200462e 0x1ca esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + 0x4200462e pmu_lp_system_init + .text.pmu_lp_system_init_default + 0x420047f8 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .text.pmu_init + 0x42004864 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + 0x42004864 pmu_init + .text.set_ocode_by_efuse + 0x42004908 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .text.calibrate_ocode + 0x42004972 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .text.esp_ocode_calib_init + 0x42004a9e 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + 0x42004a9e esp_ocode_calib_init + .text.esp_riscv_intr_num_flags + 0x42004aba 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .text.esp_cpu_intr_get_desc + 0x42004afe 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x42004afe esp_cpu_intr_get_desc + .text.s_sleep_hook_register + 0x42004b20 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x42004b9a 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x42004b9a esp_deep_sleep_register_hook + .text.esp_sleep_pd_config + 0x42004bae 0xee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x42004bae esp_sleep_pd_config + .text.io_mux_enable_lp_io_clock + 0x42004c9c 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + 0x42004c9c io_mux_enable_lp_io_clock + .text.pmu_hp_system_power_param_default + 0x42004dc8 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004dc8 pmu_hp_system_power_param_default + .text.pmu_hp_system_clock_param_default + 0x42004e0e 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004e0e pmu_hp_system_clock_param_default + .text.pmu_hp_system_digital_param_default + 0x42004e4e 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004e4e pmu_hp_system_digital_param_default + .text.pmu_hp_system_analog_param_default + 0x42004e8e 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004e8e pmu_hp_system_analog_param_default + .text.pmu_hp_system_retention_param_default + 0x42004ed4 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004ed4 pmu_hp_system_retention_param_default + .text.pmu_lp_system_power_param_default + 0x42004f14 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004f14 pmu_lp_system_power_param_default + .text.pmu_lp_system_analog_param_default + 0x42004f5a 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004f5a pmu_lp_system_analog_param_default + .text.get_act_hp_dbias + 0x42004fa0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004fa0 get_act_hp_dbias + .text.get_act_lp_dbias + 0x42004fd8 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x42004fd8 get_act_lp_dbias + .text.sleep_clock_system_retention_init + 0x42005012 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + 0x42005012 sleep_clock_system_retention_init + .text.__esp_system_init_fn_sleep_clock_startup_init + 0x42005094 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .text.sleep_retention_entries_try_create_bonding + 0x420050bc 0xe2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_join + 0x4200519e 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_stats + 0x42005252 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_get_destroy_context + 0x420052b4 0x16c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_update + 0x42005420 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_owner_bitmap + 0x42005538 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_context_update + 0x42005594 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_dettach + 0x4200560a 0xe6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_destroy_wrapper + 0x420056f0 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_all_destroy_wrapper + 0x4200571e 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_do_destroy + 0x420057ca 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_create_impl + 0x4200582c 0x1a2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_check_and_create_final_default + 0x420059ce 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_check_and_create_default + 0x42005a1a 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_try_create + 0x42005a7c 0x156 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_create_bonding + 0x42005bd2 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_create_wrapper + 0x42005c38 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_entries_create + 0x42005cbe 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + 0x42005cbe sleep_retention_entries_create + .text.module_is_inited + 0x42005d5e 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.module_is_created + 0x42005d8a 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .text.sleep_retention_module_init + 0x42005db6 0x104 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + 0x42005db6 sleep_retention_module_init + .text.pau_regdma_set_entry_link_addr + 0x42005eba 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + 0x42005eba pau_regdma_set_entry_link_addr + .text.regdma_link_get_next_continuous_wrapper + 0x42005eda 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next_addr_map_wrapper + 0x42005ede 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next_write_wait_wrapper + 0x42005ee2 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next_branch_continuous_wrapper + 0x42005ee6 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next_branch_addr_map_wrapper + 0x42005eea 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next_branch_write_wait_wrapper + 0x42005eee 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_continuous_next_wrapper + 0x42005ef2 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_addr_map_next_wrapper + 0x42005f0a 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_write_wait_next_wrapper + 0x42005f22 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_branch_continuous_next_wrapper + 0x42005f3a 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_branch_addr_map_next_wrapper + 0x42005f56 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_branch_write_wait_next_wrapper + 0x42005f72 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_continuous + 0x42005f8e 0xec esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_write + 0x4200607a 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_wait + 0x42006150 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_branch_continuous + 0x42006226 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_branch_write + 0x4200631e 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_branch_wait + 0x420063fe 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_wrapper + 0x420064de 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_next + 0x4200655c 0xca esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_recursive_impl + 0x42006626 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_instance + 0x42006690 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_get_stats + 0x420066f4 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_stats + 0x42006752 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_update_stats_wrapper + 0x42006798 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_iterator + 0x420067b8 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_addr_map + 0x4200682a 0x18c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init_branch_addr_map + 0x420069b6 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_destroy_wrapper + 0x42006abc 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_continuous + 0x42006b06 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006b06 regdma_link_new_continuous + .text.regdma_link_new_addr_map + 0x42006b9c 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006b9c regdma_link_new_addr_map + .text.regdma_link_new_write + 0x42006c3a 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006c3a regdma_link_new_write + .text.regdma_link_new_wait + 0x42006cb4 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006cb4 regdma_link_new_wait + .text.regdma_link_new_branch_continuous + 0x42006d2e 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006d2e regdma_link_new_branch_continuous + .text.regdma_link_new_branch_addr_map + 0x42006dc8 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006dc8 regdma_link_new_branch_addr_map + .text.regdma_link_new_branch_write + 0x42006e66 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006e66 regdma_link_new_branch_write + .text.regdma_link_new_branch_wait + 0x42006ee4 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006ee4 regdma_link_new_branch_wait + .text.regdma_link_new_continuous_default + 0x42006f62 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006f62 regdma_link_new_continuous_default + .text.regdma_link_init_continuous_wrapper + 0x42006f80 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_addr_map_default + 0x42006fda 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42006fda regdma_link_new_addr_map_default + .text.regdma_link_init_addr_map_wrapper + 0x42006ffc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_write_default + 0x42007060 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007060 regdma_link_new_write_default + .text.regdma_link_init_write_wrapper + 0x4200706e 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_wait_default + 0x420070c4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x420070c4 regdma_link_new_wait_default + .text.regdma_link_init_wait_wrapper + 0x420070d2 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_branch_continuous_default + 0x42007128 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007128 regdma_link_new_branch_continuous_default + .text.regdma_link_init_branch_continuous_wrapper + 0x42007146 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_branch_addr_map_default + 0x420071a2 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x420071a2 regdma_link_new_branch_addr_map_default + .text.regdma_link_init_branch_addr_map_wrapper + 0x420071c4 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_branch_write_default + 0x4200722a 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x4200722a regdma_link_new_branch_write_default + .text.regdma_link_init_branch_write_wrapper + 0x42007238 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_new_branch_wait_default + 0x42007290 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007290 regdma_link_new_branch_wait_default + .text.regdma_link_init_branch_wait_wrapper + 0x4200729e 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .text.regdma_link_init + 0x420072f6 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x420072f6 regdma_link_init + .text.regdma_link_stats + 0x42007336 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007336 regdma_link_stats + .text.regdma_link_destroy + 0x4200734c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x4200734c regdma_link_destroy + .text.regdma_link_update_next + 0x42007364 0xe6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007364 regdma_link_update_next + .text.regdma_link_get_owner_bitmap + 0x4200744a 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x4200744a regdma_link_get_owner_bitmap + .text.regdma_find_module_link_head + 0x420074ba 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x420074ba regdma_find_module_link_head + .text.regdma_find_module_link_tail + 0x4200752c 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x4200752c regdma_find_module_link_tail + .text.regdma_find_next_module_link_head + 0x420075c0 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x420075c0 regdma_find_next_module_link_head + .text.regdma_find_prev_module_link_tail + 0x42007614 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007614 regdma_find_prev_module_link_tail + .text.regdma_link_get_config_mode + 0x42007696 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + 0x42007696 regdma_link_get_config_mode + .text.esp_newlib_locks_init + 0x420076cc 0xa0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x420076cc esp_newlib_locks_init + .text.newlib_include_pthread_impl + 0x4200776c 0x2 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x4200776c newlib_include_pthread_impl + .text.newlib_include_getentropy_impl + 0x4200776e 0x2 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + 0x4200776e newlib_include_getentropy_impl + .text.esp_cleanup_r + 0x42007770 0x44 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.raise_r_stub + 0x420077b4 0xe esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.esp_newlib_init + 0x420077c2 0x64 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x420077c2 esp_newlib_init + 0x420077c2 esp_setup_newlib_syscalls + .text.__esp_system_init_fn_init_newlib + 0x42007826 0x10 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.esp_newlib_init_global_stdio + 0x42007836 0x6c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x42007836 esp_newlib_init_global_stdio + .text.__esp_system_init_fn_init_newlib_stdio + 0x420078a2 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.newlib_include_init_funcs + 0x420078ba 0x2 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x420078ba newlib_include_init_funcs + .text.syscall_not_implemented + 0x420078bc 0x1c esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x420078bc _system_r + 0x420078bc _getpid_r + 0x420078bc _kill_r + .text.syscall_not_implemented_aborts + 0x420078d8 0xc esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x420078d8 _exit + 0x420078d8 raise + 0x420078d8 _raise_r + 0x420078d8 _sbrk_r + .text.fcntl 0x420078e4 0x42 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x420078e4 fcntl + .text.newlib_include_syscalls_impl + 0x42007926 0x2 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x42007926 newlib_include_syscalls_impl + .text.adjust_boot_time + 0x42007928 0x16e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.get_adjusted_boot_time + 0x42007a96 0x3e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime_corr_stop + 0x42007ad4 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.settimeofday + 0x42007b26 0x5a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007b26 settimeofday + .text.esp_newlib_time_init + 0x42007b80 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007b80 esp_newlib_time_init + .text.esp_time_impl_get_time_since_boot + 0x42007b8c 0x2a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007b8c esp_time_impl_get_time_since_boot + .text.esp_time_impl_set_boot_time + 0x42007bb6 0x3e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007bb6 esp_time_impl_set_boot_time + .text.esp_time_impl_get_boot_time + 0x42007bf4 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007bf4 esp_time_impl_get_boot_time + .text.esp_set_time_from_rtc + 0x42007c34 0x3a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007c34 esp_set_time_from_rtc + .text.esp_sync_timekeeping_timers + 0x42007c6e 0x70 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007c6e esp_sync_timekeeping_timers + .text.esp_time_impl_init + 0x42007cde 0xe esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x42007cde esp_time_impl_init + .text.pthread_include_pthread_impl + 0x42007cec 0x2 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x42007cec pthread_include_pthread_impl + .text.pthread_include_pthread_cond_var_impl + 0x42007cee 0x2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x42007cee pthread_include_pthread_cond_var_impl + .text.pthread_key_create + 0x42007cf0 0x66 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x42007cf0 pthread_key_create + .text.pthread_include_pthread_local_storage_impl + 0x42007d56 0x2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x42007d56 pthread_include_pthread_local_storage_impl + .text.pthread_include_pthread_rwlock_impl + 0x42007d58 0x2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x42007d58 pthread_include_pthread_rwlock_impl + .text.pthread_include_pthread_semaphore_impl + 0x42007d5a 0x2 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x42007d5a pthread_include_pthread_semaphore_impl + .text.__cxa_guard_dummy + 0x42007d5c 0x2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x42007d5c __cxa_guard_dummy + .text.__cxx_init_dummy + 0x42007d5e 0x2 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x42007d5e __cxx_init_dummy + .text.esp_timer_early_init + 0x42007d60 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x42007d60 esp_timer_early_init + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x42007d70 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .text.esp_timer_init_include_func + 0x42007d7e 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x42007d7e esp_timer_init_include_func + .text.esp_timer_impl_init_system_time + 0x42007d80 0x8c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x42007d80 esp_timer_impl_init_system_time + .text.esp_timer_impl_early_init + 0x42007e0c 0xc8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x42007e0c esp_timer_impl_early_init + .text.esp_timer_impl_init + 0x42007ed4 0x104 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x42007ed4 esp_timer_impl_init + .text.uart_tx_char + 0x42007fd8 0x6c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_rx_char + 0x42008044 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_read_char + 0x42008096 0x2e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.unregister_select + 0x420080c4 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_end_select + 0x42008144 0xac esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.register_select + 0x420081f0 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_start_select + 0x42008262 0x242 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.select_notif_callback_isr + 0x420084a4 0x10a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tcflush + 0x420085ae 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tcdrain + 0x420085ea 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tcgetattr + 0x4200861a 0x378 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tcsetattr + 0x42008992 0x36e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_access + 0x42008d00 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_open + 0x42008d78 0x74 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_fcntl + 0x42008dec 0x88 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_fstat + 0x42008e74 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_close + 0x42008ec4 0x36 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_return_char + 0x42008efa 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_fsync + 0x42008f3e 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_read + 0x42008fb0 0x104 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_write + 0x420090b4 0xec esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.esp_vfs_uart_get_vfs + 0x420091a0 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x420091a0 esp_vfs_uart_get_vfs + .text.uart_vfs_dev_register + 0x420091aa 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x420091aa esp_vfs_dev_uart_register + 0x420091aa uart_vfs_dev_register + .text.__esp_system_init_fn_init_vfs_uart + 0x420091f2 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_include_dev_init + 0x42009202 0x2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x42009202 uart_vfs_include_dev_init + .text.uart_pattern_queue_update + 0x42009204 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_reenable_intr_mask + 0x42009248 0x90 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_word_length + 0x420092d8 0xb6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420092d8 uart_set_word_length + .text.uart_get_word_length + 0x4200938e 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4200938e uart_get_word_length + .text.uart_set_stop_bits + 0x420093e6 0xb6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420093e6 uart_set_stop_bits + .text.uart_get_stop_bits + 0x4200949c 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4200949c uart_get_stop_bits + .text.uart_set_parity + 0x42009514 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009514 uart_set_parity + .text.uart_get_parity + 0x4200958c 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4200958c uart_get_parity + .text.uart_set_baudrate + 0x42009604 0x284 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009604 uart_set_baudrate + .text.uart_get_baudrate + 0x42009888 0xca esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009888 uart_get_baudrate + .text.uart_wait_tx_done + 0x42009952 0x246 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009952 uart_wait_tx_done + .text.uart_get_buffered_data_len + 0x42009b98 0xc2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009b98 uart_get_buffered_data_len + .text.uart_flush_input + 0x42009c5a 0x1f8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009c5a uart_flush + 0x42009c5a uart_flush_input + .text.uart_is_driver_installed + 0x42009e52 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009e52 uart_is_driver_installed + .text.uart_set_select_notif_callback + 0x42009e74 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009e74 uart_set_select_notif_callback + .text.uart_get_selectlock + 0x42009e8e 0x6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009e8e uart_get_selectlock + .text.__esp_system_init_fn_usb_serial_jtag_conn_status_init + 0x42009e94 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text.usb_serial_jtag_connection_monitor_include + 0x42009ec4 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + 0x42009ec4 usb_serial_jtag_connection_monitor_include + .text.usb_serial_jtag_open + 0x42009ec6 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_rx_char_no_driver + 0x42009eda 0x3c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_read_char + 0x42009f16 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_close + 0x42009f3c 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_wait_tx_done_no_driver + 0x42009f40 0x7e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tx_char_no_driver + 0x42009fbe 0xa6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.unregister_select + 0x4200a064 0x88 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_end_select + 0x4200a0ec 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.register_select + 0x4200a114 0x8e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_start_select + 0x4200a1a2 0x114 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.select_notif_callback_isr + 0x4200a2b6 0xb0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tcflush + 0x4200a366 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_fcntl + 0x4200a37a 0x4a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tcgetattr + 0x4200a3c4 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_fstat + 0x4200a420 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_fsync + 0x4200a446 0x46 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tcdrain + 0x4200a48c 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tcsetattr + 0x4200a49c 0x6c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_write + 0x4200a508 0x8c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_return_char + 0x4200a594 0x3a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_read + 0x4200a5ce 0xb4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.__esp_system_init_fn_init_vfs_usj_sec + 0x4200a682 0x22 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.esp_vfs_usb_serial_jtag_get_vfs + 0x4200a6a4 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4200a6a4 esp_vfs_usb_serial_jtag_get_vfs + .text.usb_serial_jtag_vfs_include_dev_init + 0x4200a6ae 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4200a6ae usb_serial_jtag_vfs_include_dev_init + .text.usb_serial_jtag_is_driver_installed + 0x4200a6b0 0xe esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a6b0 usb_serial_jtag_is_driver_installed + .text.usb_serial_jtag_set_select_notif_callback + 0x4200a6be 0x20 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a6be usb_serial_jtag_set_select_notif_callback + .text.usb_serial_jtag_read_ready + 0x4200a6de 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a6de usb_serial_jtag_read_ready + .text.usb_serial_jtag_write_ready + 0x4200a70c 0x20 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a70c usb_serial_jtag_write_ready + .text.include_esp_phy_override + 0x4200a72c 0x2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4200a72c include_esp_phy_override + .text.console_start_select + 0x4200a72e 0x2a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .text.console_end_select + 0x4200a758 0x20 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a758 console_end_select + .text.console_open + 0x4200a778 0x44 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a778 console_open + .text.console_write + 0x4200a7bc 0x34 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a7bc console_write + .text.console_fstat + 0x4200a7f0 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a7f0 console_fstat + .text.console_close + 0x4200a806 0x24 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a806 console_close + .text.console_read + 0x4200a82a 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a82a console_read + .text.console_fcntl + 0x4200a840 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a840 console_fcntl + .text.console_fsync + 0x4200a856 0x2a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a856 console_fsync + .text.console_access + 0x4200a880 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a880 console_access + .text.console_tcsetattr + 0x4200a896 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a896 console_tcsetattr + .text.console_tcgetattr + 0x4200a8ac 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a8ac console_tcgetattr + .text.console_tcdrain + 0x4200a8c2 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a8c2 console_tcdrain + .text.console_tcflush + 0x4200a8d8 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a8d8 console_tcflush + .text.esp_vfs_dev_console_register + 0x4200a8ee 0x20 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .text.esp_vfs_console_register + 0x4200a90e 0x26 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a90e esp_vfs_console_register + .text.__esp_system_init_fn_init_vfs_console + 0x4200a934 0xe esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .text.esp_vfs_include_console_register + 0x4200a942 0x2 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a942 esp_vfs_include_console_register + .text.esp_get_free_index + 0x4200a944 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.free_proxy_members + 0x4200a966 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_duplicate_fs_ops + 0x4200a994 0xde esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_free_fs_ops + 0x4200aa72 0x38 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fs_common + 0x4200aaaa 0x166 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x4200ac10 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fs + 0x4200ac78 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ac78 esp_vfs_register_fs + .text.get_vfs_for_index + 0x4200ad00 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ad00 get_vfs_for_index + .text.get_vfs_for_fd + 0x4200ad28 0x2a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.get_vfs_for_path + 0x4200ad52 0xaa esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ad52 get_vfs_for_path + .text.esp_vfs_open + 0x4200adfc 0x146 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200adfc esp_vfs_open + 0x4200adfc _open_r + .text.esp_vfs_write + 0x4200af42 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200af42 esp_vfs_write + 0x4200af42 _write_r + .text.esp_vfs_lseek + 0x4200afc6 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200afc6 _lseek_r + 0x4200afc6 esp_vfs_lseek + .text.esp_vfs_read + 0x4200b04a 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b04a esp_vfs_read + 0x4200b04a _read_r + .text.esp_vfs_close + 0x4200b0ce 0xf4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b0ce esp_vfs_close + 0x4200b0ce _close_r + .text.esp_vfs_fstat + 0x4200b1c2 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b1c2 esp_vfs_fstat + 0x4200b1c2 _fstat_r + .text.esp_vfs_fcntl_r + 0x4200b238 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b238 _fcntl_r + 0x4200b238 esp_vfs_fcntl_r + .text.esp_vfs_fsync + 0x4200b2bc 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b2bc esp_vfs_fsync + 0x4200b2bc fsync + .text.esp_vfs_stat + 0x4200b330 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b330 _stat_r + 0x4200b330 esp_vfs_stat + .text.esp_vfs_link + 0x4200b394 0x96 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b394 esp_vfs_link + 0x4200b394 _link_r + .text.esp_vfs_unlink + 0x4200b42a 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b42a esp_vfs_unlink + 0x4200b42a _unlink_r + .text.esp_vfs_rename + 0x4200b49e 0xb0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b49e _rename_r + 0x4200b49e esp_vfs_rename + .text.esp_vfs_access + 0x4200b54e 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b54e access + 0x4200b54e esp_vfs_access + .text.esp_vfs_select_triggered + 0x4200b5b8 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b5b8 esp_vfs_select_triggered + .text.esp_vfs_select_triggered_isr + 0x4200b610 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b610 esp_vfs_select_triggered_isr + .text.tcgetattr + 0x4200b664 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b664 tcgetattr + .text.tcsetattr + 0x4200b6e6 0x8c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b6e6 tcsetattr + .text.tcdrain 0x4200b772 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b772 tcdrain + .text.tcflush 0x4200b7ea 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b7ea tcflush + .text.vfs_include_syscalls_impl + 0x4200b86c 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b86c vfs_include_syscalls_impl + .text.vfs_null_get_empty_fd + 0x4200b86e 0x24 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_fsync + 0x4200b892 0x1e esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_ioctl + 0x4200b8b0 0x26 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_fcntl + 0x4200b8d6 0x26 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_close + 0x4200b8fc 0x1e esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_open + 0x4200b91a 0xc0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_pwrite + 0x4200b9da 0x32 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_pread + 0x4200ba0c 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_read + 0x4200ba3c 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_lseek + 0x4200ba6c 0x42 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_write + 0x4200baae 0x32 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_stat + 0x4200bae0 0x54 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_fstat + 0x4200bb34 0x42 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.esp_vfs_null_register + 0x4200bb76 0x22 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4200bb76 esp_vfs_null_register + .text.__esp_system_init_fn_init_vfs_nullfs + 0x4200bb98 0xe esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.esp_vfs_include_nullfs_register + 0x4200bba6 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4200bba6 esp_vfs_include_nullfs_register + .text.esp_coexist_debug_matrix_init_wrapper + 0x4200bba8 0x6 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_common_semphr_create_wrapper + 0x4200bbae 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bbae esp_coex_common_semphr_create_wrapper + .text.esp_coex_common_semphr_delete_wrapper + 0x4200bbc0 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bbc0 esp_coex_common_semphr_delete_wrapper + .text.esp_coex_common_semphr_take_wrapper + 0x4200bbd2 0x24 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bbd2 esp_coex_common_semphr_take_wrapper + .text.esp_coex_common_semphr_give_wrapper + 0x4200bbf6 0x18 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bbf6 esp_coex_common_semphr_give_wrapper + .text.esp_coex_common_timer_done_wrapper + 0x4200bc0e 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bc0e esp_coex_common_timer_done_wrapper + .text.esp_coex_common_timer_setfn_wrapper + 0x4200bc1c 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4200bc1c esp_coex_common_timer_setfn_wrapper + .text.nvs_sec_provider_include_impl + 0x4200bc2a 0x2 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x4200bc2a nvs_sec_provider_include_impl + .text.app_main + 0x4200bc2c 0x36 esp-idf/main/libmain.a(Main.c.obj) + 0x4200bc2c app_main + .text.riscv_decode_offset_from_jal_instruction + 0x4200bc62 0x4c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + 0x4200bc62 riscv_decode_offset_from_jal_instruction + .text.gpio_input_disable + 0x4200bcae 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x4200bd2c 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x4200bdaa 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x4200be26 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x4200bea4 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x4200bf20 0x94 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x4200bfb4 0x94 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x4200c048 0x92 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x4200c0da 0x92 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_en + 0x4200c16c 0x9a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c16c gpio_pullup_en + .text.gpio_pullup_dis + 0x4200c206 0xb6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c206 gpio_pullup_dis + .text.gpio_pulldown_en + 0x4200c2bc 0x9a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c2bc gpio_pulldown_en + .text.gpio_pulldown_dis + 0x4200c356 0x9a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c356 gpio_pulldown_dis + .text.gpio_set_intr_type + 0x4200c3f0 0x15c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c3f0 gpio_set_intr_type + .text.gpio_intr_enable + 0x4200c54c 0xa6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c54c gpio_intr_enable + .text.gpio_intr_disable + 0x4200c5f2 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c5f2 gpio_intr_disable + .text.gpio_input_enable + 0x4200c668 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c668 gpio_input_enable + .text.gpio_output_disable + 0x4200c6e6 0x8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c6e6 gpio_output_disable + .text.gpio_output_enable + 0x4200c770 0x8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c770 gpio_output_enable + .text.gpio_od_disable + 0x4200c7fa 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c7fa gpio_od_disable + .text.gpio_od_enable + 0x4200c878 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c878 gpio_od_enable + .text.gpio_config + 0x4200c8f8 0x1b8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200c8f8 gpio_config + .text.gpio_sleep_set_direction + 0x4200cab0 0xa0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200cab0 gpio_sleep_set_direction + .text.gpio_sleep_set_pull_mode + 0x4200cb50 0x146 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200cb50 gpio_sleep_set_pull_mode + .text.gpio_sleep_sel_en + 0x4200cc96 0x94 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200cc96 gpio_sleep_sel_en + .text.gpio_sleep_sel_dis + 0x4200cd2a 0x92 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4200cd2a gpio_sleep_sel_dis + .text.rtcio_ll_function_select + 0x4200cdbc 0x88 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_is_valid_gpio + 0x4200ce44 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x4200ce44 rtc_gpio_is_valid_gpio + .text.rtc_io_number_get + 0x4200ce68 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x4200ce68 rtc_io_number_get + .text.rtc_gpio_deinit + 0x4200ce78 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x4200ce78 rtc_gpio_deinit + .text.bootloader_init_mem + 0x4200ceee 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4200ceee bootloader_init_mem + .text.bootloader_flash_update_id + 0x4200cf02 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + 0x4200cf02 bootloader_flash_update_id + .text.s_mem_caps_check + 0x4200cf22 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_find_available_region + 0x4200cf38 0x3a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_is_enclosed + 0x4200cf72 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_is_overlapped + 0x4200cf88 0x22 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_get_bus_mask + 0x4200cfaa 0x44 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_reserve_irom_region + 0x4200cfee 0xa8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_reserve_drom_region + 0x4200d096 0xa8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_init + 0x4200d13e 0x19c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4200d13e esp_mmu_map_init + .text.esp_mmu_map + 0x4200d2da 0x512 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4200d2da esp_mmu_map + .text.esp_mmu_unmap + 0x4200d7ec 0x17c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4200d7ec esp_mmu_unmap + .text.esp_mmu_vaddr_to_paddr + 0x4200d968 0xfa esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4200d968 esp_mmu_vaddr_to_paddr + .text.spi_flash_init_lock + 0x4200da62 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4200da62 spi_flash_init_lock + .text.spi_flash_op_lock + 0x4200da64 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4200da64 spi_flash_op_lock + .text.spi_flash_op_unlock + 0x4200da76 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4200da76 spi_flash_op_unlock + .text.spi_flash_mmap + 0x4200da88 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4200da88 spi_flash_mmap + .text.spi_flash_munmap + 0x4200db50 0x6e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4200db50 spi_flash_munmap + .text.spi_flash_cache2phys + 0x4200dbbe 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4200dbbe spi_flash_cache2phys + .text.esp_mspi_get_io + 0x4200dbe2 0x42 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4200dbe2 esp_mspi_get_io + .text.esp_mspi_pin_reserve + 0x4200dc24 0x5c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4200dc24 esp_mspi_pin_reserve + .text.esp_flash_read_chip_id + 0x4200dc80 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4200dc80 esp_flash_read_chip_id + .text.spimem_flash_ll_get_source_freq_mhz + 0x4200dc94 0xc4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.esp_flash_init_default_chip + 0x4200dd58 0x15c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x4200dd58 esp_flash_init_default_chip + .text.esp_flash_app_init + 0x4200deb4 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x4200deb4 esp_flash_app_init + .text.esp_flash_app_enable_os_functions + 0x4200ded4 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4200ded4 esp_flash_app_enable_os_functions + .text.esp_crosscore_int_init + 0x4200defe 0x64 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4200defe esp_crosscore_int_init + .text.esp_vApplicationIdleHook + 0x4200df62 0x46 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4200df62 esp_vApplicationIdleHook + .text.esp_register_freertos_idle_hook_for_cpu + 0x4200dfa8 0x74 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4200dfa8 esp_register_freertos_idle_hook_for_cpu + .text.esp_register_freertos_tick_hook_for_cpu + 0x4200e01c 0x74 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4200e01c esp_register_freertos_tick_hook_for_cpu + .text.esp_register_freertos_tick_hook + 0x4200e090 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4200e090 esp_register_freertos_tick_hook + .text.esp_int_wdt_init + 0x4200e0a0 0xc4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x4200e0a0 esp_int_wdt_init + .text.esp_int_wdt_cpu_init + 0x4200e164 0x54 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x4200e164 esp_int_wdt_cpu_init + .text.find_entry_and_check_all_reset + 0x4200e1b8 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.find_entry_from_task_handle_and_check_all_reset + 0x4200e1e8 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.task_wdt_timer_feed + 0x4200e21a 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x4200e246 0x17a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.get_task_affinity + 0x4200e3c0 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.task_wdt_timeout_abort + 0x4200e3e6 0x9a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4200e3e6 task_wdt_timeout_abort + .text.task_wdt_timeout_handling + 0x4200e480 0x50 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add + 0x4200e4d0 0x66 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4200e4d0 esp_task_wdt_add + .text.subscribe_idle + 0x4200e536 0xb2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_init + 0x4200e5e8 0x144 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4200e5e8 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x4200e72c 0xcc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4200e72c esp_task_wdt_reset + .text.idle_hook_cb + 0x4200e7f8 0x10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_print_triggered_tasks + 0x4200e808 0x12a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4200e808 esp_task_wdt_print_triggered_tasks + .text.task_wdt_isr + 0x4200e932 0x106 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_impl_timer_allocate + 0x4200ea38 0xf0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x4200ea38 esp_task_wdt_impl_timer_allocate + .text.esp_task_wdt_impl_timer_feed + 0x4200eb28 0x36 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x4200eb28 esp_task_wdt_impl_timer_feed + .text.esp_task_wdt_impl_timeout_triggered + 0x4200eb5e 0x2e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x4200eb5e esp_task_wdt_impl_timeout_triggered + .text.esp_task_wdt_impl_timer_restart + 0x4200eb8c 0x40 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x4200eb8c esp_task_wdt_impl_timer_restart + .text.esp_err_to_name + 0x4200ebcc 0x3a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x4200ebcc esp_err_to_name + .text.gpspi_flash_ll_calculate_clock_reg + 0x4200ec06 0x2c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text.spimem_flash_ll_calculate_clock_reg + 0x4200ec32 0x2a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text.get_flash_clock_divider + 0x4200ec5c 0x98 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text.spi_flash_cal_clock + 0x4200ecf4 0x28 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text.spi_flash_hal_init + 0x4200ed1c 0x108 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4200ed1c spi_flash_hal_init + .text.spi_flash_hal_supports_direct_write + 0x4200ee24 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4200ee24 spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x4200ee36 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4200ee36 spi_flash_hal_supports_direct_read + .text.uart_hal_get_sclk + 0x4200ee48 0x70 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200ee48 uart_hal_get_sclk + .text.uart_hal_get_baudrate + 0x4200eeb8 0x86 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200eeb8 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x4200ef3e 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200ef3e uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x4200ef64 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200ef64 uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x4200ef70 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200ef70 uart_hal_set_data_bit_num + .text.uart_hal_get_data_bit_num + 0x4200ef94 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200ef94 uart_hal_get_data_bit_num + .text.uart_hal_set_parity + 0x4200efa0 0x34 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200efa0 uart_hal_set_parity + .text.uart_hal_get_parity + 0x4200efd4 0x1c esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4200efd4 uart_hal_get_parity + .text.gpio_hal_intr_enable_on_core + 0x4200eff0 0x5e esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x4200eff0 gpio_hal_intr_enable_on_core + .text.gpio_hal_intr_disable + 0x4200f04e 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x4200f04e gpio_hal_intr_disable + .text.modem_clock_hal_set_ble_rtc_timer_divisor_value + 0x4200f076 0x1e esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f076 modem_clock_hal_set_ble_rtc_timer_divisor_value + .text.modem_clock_hal_enable_ble_rtc_timer_clock + 0x4200f094 0x10 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f094 modem_clock_hal_enable_ble_rtc_timer_clock + .text.modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source + 0x4200f0a4 0x22 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f0a4 modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source + .text.modem_clock_hal_select_ble_rtc_timer_lpclk_source + 0x4200f0c6 0xe2 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f0c6 modem_clock_hal_select_ble_rtc_timer_lpclk_source + .text.modem_clock_hal_deselect_all_coex_lpclk_source + 0x4200f1a8 0x22 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f1a8 modem_clock_hal_deselect_all_coex_lpclk_source + .text.modem_clock_hal_select_coex_lpclk_source + 0x4200f1ca 0xe2 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f1ca modem_clock_hal_select_coex_lpclk_source + .text.modem_clock_hal_deselect_all_wifi_lpclk_source + 0x4200f2ac 0x22 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f2ac modem_clock_hal_deselect_all_wifi_lpclk_source + .text.modem_clock_hal_select_wifi_lpclk_source + 0x4200f2ce 0xe2 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f2ce modem_clock_hal_select_wifi_lpclk_source + .text.modem_clock_hal_enable_wifipwr_clock + 0x4200f3b0 0x9a esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + 0x4200f3b0 modem_clock_hal_enable_wifipwr_clock + .text.pau_hal_set_regdma_entry_link_addr + 0x4200f44a 0x14 esp-idf/hal/libhal.a(pau_hal.c.obj) + 0x4200f44a pau_hal_set_regdma_entry_link_addr + .text.pau_hal_set_regdma_work_timeout + 0x4200f45e 0x2 esp-idf/hal/libhal.a(pau_hal.c.obj) + 0x4200f45e pau_hal_set_regdma_work_timeout + .text.pau_hal_set_regdma_wait_timeout + 0x4200f460 0x5c esp-idf/hal/libhal.a(pau_hal.c.obj) + 0x4200f460 pau_hal_set_regdma_wait_timeout + .text.apm_ll_apm_ctrl_filter_enable + 0x4200f4bc 0x6a esp-idf/hal/libhal.a(apm_hal.c.obj) + .text.apm_hal_apm_ctrl_filter_enable + 0x4200f526 0x5c esp-idf/hal/libhal.a(apm_hal.c.obj) + 0x4200f526 apm_hal_apm_ctrl_filter_enable + .text.apm_hal_apm_ctrl_filter_enable_all + 0x4200f582 0x5e esp-idf/hal/libhal.a(apm_hal.c.obj) + 0x4200f582 apm_hal_apm_ctrl_filter_enable_all + .text.esp_cpu_configure_invalid_regions + 0x4200f5e0 0xac esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .text.esp_cpu_configure_region_protection + 0x4200f68c 0x1e4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x4200f68c esp_cpu_configure_region_protection + .text.__esp_system_init_fn_init_rng_clock + 0x4200f870 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text.esp_gpio_reserve + 0x4200f886 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x4200f886 esp_gpio_reserve + .text.esp_clk_tree_src_get_freq_hz + 0x4200f8a2 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x4200f8a2 esp_clk_tree_src_get_freq_hz + .text.esp_clk_tree_enable_src + 0x4200fa52 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x4200fa52 esp_clk_tree_enable_src + .text.clk_tree_rtc_slow_calibration + 0x4200fa56 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x4200fac2 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4200fac2 esp_clk_tree_xtal32k_get_freq_hz + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x4200fb3c 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4200fb3c esp_clk_tree_lp_slow_get_freq_hz + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x4200fb7e 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4200fb7e esp_clk_tree_rc_fast_get_freq_hz + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x4200fbcc 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4200fbcc esp_clk_tree_lp_fast_get_freq_hz + .text.adc_calc_hw_calibration_code + 0x4200fc22 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fc22 adc_calc_hw_calibration_code + .text.adc_load_hw_calibration_chan_compens + 0x4200fca6 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fca6 adc_load_hw_calibration_chan_compens + .text.adc_lock_release + 0x4200fcf4 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fcf4 adc_lock_release + .text.adc_lock_try_acquire + 0x4200fdbc 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fdbc adc_lock_try_acquire + .text.adc_apb_periph_claim + 0x4200fe12 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fe12 adc_apb_periph_claim + .text.adc_apb_periph_free + 0x4200fe7c 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4200fe7c adc_apb_periph_free + .text.init_timer_task + 0x4200ff0c 0xac esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.timer_process_alarm + 0x4200ffb8 0x16c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.timer_task + 0x42010124 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.deinit_timer_task + 0x4201013e 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_create + 0x42010162 0x8a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x42010162 esp_timer_create + .text.esp_timer_delete + 0x420101ec 0x8a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x420101ec esp_timer_delete + .text.esp_timer_init + 0x42010276 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x42010276 esp_timer_init + .text.__esp_system_init_fn_esp_timer_init_os + 0x420102ce 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.ets_timer_setfn + 0x420102dc 0x8c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x420102dc os_timer_setfn + 0x420102dc ets_timer_setfn + .text.ets_timer_done + 0x42010368 0x2a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x42010368 ets_timer_done + 0x42010368 os_timer_done + .text._Z41__static_initialization_and_destruction_0v + 0x42010392 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._GLOBAL__sub_I__ZN3nvs4PageC2Ev + 0x420103a8 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text.adc_digi_get_io_num + 0x420103b6 0x4c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_digi_gpio_init + 0x42010402 0x82 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_enable + 0x42010484 0x42 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_set_channel + 0x420104c6 0x54 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_get_raw_result + 0x4201051a 0x48 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_hal_onetime_start + 0x42010562 0x5a esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_hal_convert + 0x420105bc 0xce esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_config_width + 0x4201068a 0x10 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0x4201068a adc1_config_width + .text.adc1_config_channel_atten + 0x4201069a 0xdc esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0x4201069a adc1_config_channel_atten + .text.adc1_get_raw + 0x42010776 0xc6 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0x42010776 adc1_get_raw + .text.check_adc_oneshot_driver_conflict + 0x4201083c 0x6e esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_hw_calibration + 0x420108aa 0x5c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.esp_coex_adapter_register + 0x42010906 0x62 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + 0x42010906 esp_coex_adapter_register + .text.coex_pre_init + 0x42010968 0x1a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + 0x42010968 coex_pre_init + .text.coex_core_lock + 0x42010982 0x5e C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_unlock + 0x420109e0 0x5c C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .text.coex_core_timer_idx_get + 0x42010a3c 0x3a C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x42010a3c coex_core_timer_idx_get + .text.coex_core_event_duration_get + 0x42010a76 0x52 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x42010a76 coex_core_event_duration_get + .text.coex_core_pre_init + 0x42010ac8 0xa6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + 0x42010ac8 coex_core_pre_init + .text.coex_hw_timer_tick_get + 0x42010b6e 0xda C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + 0x42010b6e coex_hw_timer_tick_get + .text.coex_hw_timer_freq_set + 0x42010c48 0x62 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + 0x42010c48 coex_hw_timer_freq_set + .text.coex_hw_clear_reg + 0x42010caa 0x96 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + 0x42010caa coex_hw_clear_reg + .text.coex_rom_data_init + 0x42010d40 0x46 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + 0x42010d40 coex_rom_data_init + .text.coex_rom_osi_funcs_init + 0x42010d86 0xee C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + 0x42010d86 coex_rom_osi_funcs_init + .text.coex_schm_change_phase + 0x42010e74 0x122 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_timeout_process + 0x42010f96 0x6 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .text.coex_schm_init + 0x42010f9c 0x70 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + 0x42010f9c coex_schm_init + .text.is_partition_encrypted + 0x4201100c 0x4a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.load_partitions + 0x42011056 0x1b8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.ensure_partitions_loaded + 0x4201120e 0x7e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.iterator_create + 0x4201128c 0x3e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x420112ca 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x420112ca esp_partition_iterator_release + .text.esp_partition_next + 0x420112dc 0xb6 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x420112dc esp_partition_next + .text.esp_partition_find + 0x42011392 0x46 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x42011392 esp_partition_find + .text.esp_partition_get + 0x420113d8 0x32 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x420113d8 esp_partition_get + .text.esp_partition_is_flash_region_writable + 0x4201140a 0x64 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4201140a esp_partition_is_flash_region_writable + .text.esp_partition_main_flash_region_safe + 0x4201146e 0x50 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4201146e esp_partition_main_flash_region_safe + .text.esp_partition_get_main_flash_sector_size + 0x420114be 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x420114be esp_partition_get_main_flash_sector_size + .text.esp_efuse_rtc_calib_get_ver + 0x420114c2 0x4a esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + 0x420114c2 esp_efuse_rtc_calib_get_ver + .text.esp_efuse_rtc_calib_get_init_code + 0x4201150c 0xc4 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + 0x4201150c esp_efuse_rtc_calib_get_init_code + .text.esp_efuse_rtc_calib_get_chan_compens + 0x420115d0 0x13e esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + 0x420115d0 esp_efuse_rtc_calib_get_chan_compens + .text.clk_hal_lp_slow_get_freq_hz + 0x4201170e 0x64 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4201170e clk_hal_lp_slow_get_freq_hz + .text.clk_hal_xtal_get_freq_mhz + 0x42011772 0x5c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x42011772 clk_hal_xtal_get_freq_mhz + .text.clk_hal_soc_root_get_freq_mhz + 0x420117ce 0x48 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x420117ce clk_hal_soc_root_get_freq_mhz + .text.clk_hal_cpu_get_freq_hz + 0x42011816 0xbe esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x42011816 clk_hal_cpu_get_freq_hz + .text.get_controller + 0x420118d4 0x1c esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_disable_channel + 0x420118f0 0x4a esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_set_atten + 0x4201193a 0x4a esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_enable + 0x42011984 0x42 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_ll_calibration_prepare + 0x420119c6 0x60 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_get_raw_result + 0x42011a26 0x48 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_ll_calibration_finish + 0x42011a6e 0x46 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.read_cal_channel + 0x42011ab4 0x8e esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_set_controller + 0x42011b42 0xe esp-idf/hal/libhal.a(adc_hal_common.c.obj) + 0x42011b42 adc_hal_set_controller + .text.cal_setup + 0x42011b50 0x52 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_calibration_init + 0x42011ba2 0x20 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + 0x42011ba2 adc_hal_calibration_init + .text.adc_hal_set_calibration_param + 0x42011bc2 0x90 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + 0x42011bc2 adc_hal_set_calibration_param + .text.adc_hal_self_calibration + 0x42011c52 0x1b8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + 0x42011c52 adc_hal_self_calibration + .text.lib_printf + 0x42011e0a 0x90 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .text.coexist_printf + 0x42011e9a 0x2a esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + 0x42011e9a coexist_printf + .text.esp_ota_get_running_partition + 0x42011ec4 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x42011ec4 esp_ota_get_running_partition + .text._ZL15eh_globals_dtorPv + 0x42011f8a 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x42011fba 0x2a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .text.__wrap__Unwind_DeleteException + 0x42011fe4 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x42011fe4 __wrap__Unwind_DeleteException + .text 0x42011ff0 0xec C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + 0x42011ff0 _fclose_r + 0x420120c6 fclose + .text 0x420120dc 0x1e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + 0x420120dc __sflush_r + .text 0x420122c0 0x2ea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + 0x42012452 __sfp_lock_acquire + 0x42012462 __sfp_lock_release + 0x42012472 __sfp + 0x42012548 __sinit + 0x42012576 __fp_lock_all + 0x42012590 __fp_unlock_all + .text 0x420125aa 0xfc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + 0x420125aa _fopen_r + 0x42012688 fopen + .text 0x420126a6 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + 0x420126a6 _fseek_r + 0x420126a8 fseek + .text 0x420126ce 0x31e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + 0x420126ce __sfvwrite_r + .text 0x420129ec 0x68 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + 0x420129ec _fwalk_sglue + .text 0x42012a54 0xac C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + 0x42012a54 _puts_r + 0x42012aea puts + .text 0x42012b00 0xc8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + 0x42012b00 __sread + 0x42012b32 __seofread + 0x42012b36 __swrite + 0x42012b88 __sseek + 0x42012bc0 __sclose + .text 0x42012bc8 0x32c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + 0x42012bc8 _fseeko_r + 0x42012ece fseeko + .text 0x42012ef4 0x100 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + 0x42012ef4 _reclaim_reent + .text 0x42012ff4 0x12 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + 0x42012ff4 __errno + .text 0x42013006 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + 0x42013006 close + .text 0x4201301e 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + 0x4201301e fstat + .text 0x4201303e 0x24 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + 0x4201303e gettimeofday + .text 0x42013062 0x3a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + 0x42013062 open + .text 0x4201309c 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + 0x4201309c read + .text 0x420130c4 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + 0x420130c4 write + .text 0x420130ec 0x7a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + 0x420130ec __sflags + .text 0x42013166 0x13a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + 0x42013192 __srefill_r + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifiextrairam EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifiextrairam.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislpiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libesp_driver_gptimer.a:gptimer.*(.text .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_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) + *libesp_event.a:default_event_loop.*(.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.*(.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.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + .text.esp_cpu_set_breakpoint + 0x420132a0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x420132a0 esp_cpu_set_breakpoint + *libesp_hw_support.a:gdma.*(.text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) + *libesp_hw_support.a:periph_ctrl.*(.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_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .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_rcc_acquire_enter + 0x420132f0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x420132f0 periph_rcc_acquire_enter + .text.periph_rcc_acquire_exit + 0x42013318 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x42013318 periph_rcc_acquire_exit + *libesp_hw_support.a:sar_periph_ctrl.*(.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) + .text.s_sar_power_acquire + 0x4201333a 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x420133be 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x42013474 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x42013474 sar_periph_ctrl_adc_oneshot_power_acquire + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x42013482 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x42013482 sar_periph_ctrl_adc_oneshot_power_release + *libesp_phy.a:phy_init.*(.text .text.esp_phy_erase_cal_data_in_nvs .text.esp_phy_get_init_data .text.esp_phy_load_cal_and_init .text.esp_phy_load_cal_data_from_nvs .text.esp_phy_modem_deinit .text.esp_phy_modem_init .text.esp_phy_release_init_data .text.esp_phy_store_cal_data_to_nvs .text.esp_phy_update_country_info .text.load_cal_data_from_nvs_handle .text.phy_get_lock .text.store_cal_data_to_nvs_handle) + *libesp_system.a:esp_system_chip.*(.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.*(.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_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_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.disable_intr_wrapper .text.enable_intr_wrapper .text.esp_event_post_wrapper .text.esp_log_write_wrapper .text.esp_log_writev_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.esp_read_mac_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.nvs_open_wrapper .text.queue_create_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.regdma_link_set_write_wait_content_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.sleep_retention_find_link_by_id_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_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.*(.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.*) + .text.main_task + 0x42013490 0xd4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .text.esp_startup_start_app + 0x42013564 0x76 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x42013564 esp_startup_start_app + *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:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_etm_task .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy) + *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_etm_task .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) + *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libheap.a:multi_heap.*(.text .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes) + *libieee802154.a:esp_ieee802154_ack.*(.text .text.ieee802154_add_pending_addr .text.ieee802154_clear_pending_addr .text.ieee802154_reset_pending_table) + *libieee802154.a:esp_ieee802154_dev.*(.text .text.enable_rx .text.ieee802154_cca .text.ieee802154_disable .text.ieee802154_enable .text.ieee802154_energy_detect .text.ieee802154_get_recent_lqi .text.ieee802154_get_recent_rssi .text.ieee802154_get_state .text.ieee802154_mac_deinit .text.ieee802154_mac_init .text.ieee802154_receive .text.ieee802154_receive_at .text.ieee802154_receive_done .text.ieee802154_receive_handle_done .text.ieee802154_sleep .text.ieee802154_sleep_deinit .text.ieee802154_sleep_init .text.ieee802154_transmit .text.ieee802154_transmit_at .text.ieee802154_transmit_done .text.ieee802154_transmit_internal .text.is_target_time_expired .text.isr_handle_timer0_done .text.rx_init .text.set_next_rx_buffer .text.start_ed .text.stop_cca .text.stop_current_operation .text.stop_ed .text.stop_rx .text.stop_rx_ack .text.stop_tx .text.stop_tx_ack .text.stop_tx_cca .text.tx_init) + *libieee802154.a:esp_ieee802154_frame.*(.text .text.ieee802154_frame_get_dest_panid .text.ieee802154_frame_get_dst_addr .text.ieee802154_frame_get_ie_field_len .text.ieee802154_frame_get_mic_len .text.ieee802154_frame_get_src_panid .text.ieee802154_frame_get_type .text.ieee802154_frame_get_version .text.ieee802154_frame_ie_header_offset .text.ieee802154_frame_is_ack_required) + *libieee802154.a:esp_ieee802154_pib.*(.text .text.ieee802154_pib_get_auto_ack_rx .text.ieee802154_pib_get_auto_ack_tx .text.ieee802154_pib_get_cca_mode .text.ieee802154_pib_get_cca_threshold .text.ieee802154_pib_get_channel .text.ieee802154_pib_get_coordinator .text.ieee802154_pib_get_enhance_ack_tx .text.ieee802154_pib_get_power .text.ieee802154_pib_get_promiscuous .text.ieee802154_pib_init .text.ieee802154_pib_is_pending .text.ieee802154_pib_set_auto_ack_rx .text.ieee802154_pib_set_auto_ack_tx .text.ieee802154_pib_set_cca_mode .text.ieee802154_pib_set_cca_threshold .text.ieee802154_pib_set_channel .text.ieee802154_pib_set_coordinator .text.ieee802154_pib_set_enhance_ack_tx .text.ieee802154_pib_set_pending_mode .text.ieee802154_pib_set_power .text.ieee802154_pib_set_promiscuous .text.ieee802154_pib_set_rx_when_idle .text.ieee802154_pib_update .text.ieee802154_txpower_convert) + *libieee802154.a:esp_ieee802154_sec.*(.text .text.ieee802154_ll_set_security_addr .text.ieee802154_ll_set_security_key) + *libieee802154.a:esp_ieee802154_timer.*(.text .text.ieee802154_timer0_get_value .text.ieee802154_timer1_get_value) + *libieee802154.a:esp_ieee802154_util.*(.text .text.ieee802154_channel_to_freq .text.ieee802154_etm_set_event_task .text.ieee802154_freq_to_channel .text.ieee802154_set_txrx_pti) + *liblog.a:log_timestamp.*(.text) + *liblog.a:log_write.*(.text .text.esp_log_set_vprintf .text.esp_log_writev) + .text.esp_log_writev + 0x420135da 0x32 esp-idf/log/liblog.a(log_write.c.obj) + 0x420135da esp_log_writev + *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) + .text.intr_handler_get + 0x4201360c 0x14 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x4201360c intr_handler_get + *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) + .text.intr_handler_set + 0x42013620 0x22 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x42013620 intr_handler_set + *(.stub) + *(.gnu.linkonce.t.*) + *(.gnu.warning) + *(.irom0.text) + 0x42013652 . = (. + 0x10) + *fill* 0x42013642 0x10 + 0x42013652 _text_end = ABSOLUTE (.) + 0x42013652 _instruction_reserved_end = ABSOLUTE (.) + 0x42013652 _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.flash_rodata_dummy + 0x42000020 0x18000 + 0x42000020 _flash_rodata_dummy_start = . + 0x42013652 . = (ALIGN (ALIGNOF (.flash.text)) + SIZEOF (.flash.text)) + *fill* 0x42000020 0x13632 + 0x42018020 . = (ALIGN (0x8000) + 0x20) + *fill* 0x42013652 0x49ce + +.flash.appdesc 0x42018020 0x100 + 0x42018020 _rodata_reserved_start = ABSOLUTE (.) + 0x42018020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x42018020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x42018020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x42018120 . = ALIGN (ALIGNOF (.flash.rodata)) + 0x00000001 ASSERT ((ADDR (.flash.rodata) == (ADDR (.flash.appdesc) + SIZEOF (.flash.appdesc))), The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.) + +.flash.rodata 0x42018120 0x933c + 0x42018120 _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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *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.* *liblog.a:log_lock.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) + .rodata.__esp_system_init_fn_init_show_app_info.str1.4 + 0x42018120 0x68fb esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xee (size before relaxing) + .rodata.__esp_system_init_fn_init_efuse_show_app_info.str1.4 + 0x4201ea1b 0xa2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.__esp_system_init_fn_init_efuse.str1.4 + 0x4201ea1b 0x31 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + *fill* 0x4201ea1b 0x1 + .rodata.__FUNCTION__.0 + 0x4201ea1c 0x20 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x4201ea3c 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x4201ea3c 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x4201ea3c 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__.1 + 0x4201ea3c 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x4201ea57 0x1 + .rodata.__func__.4 + 0x4201ea58 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x4201ea72 0x2 + .srodata.ADC1_INIT_CODE_ATTEN0_CH6 + 0x4201ea74 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH5 + 0x4201ea78 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH4 + 0x4201ea7c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH3 + 0x4201ea80 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH2 + 0x4201ea84 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH1 + 0x4201ea88 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH0 + 0x4201ea8c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN3 + 0x4201ea90 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN2 + 0x4201ea94 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN1 + 0x4201ea98 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0 + 0x4201ea9c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.range_read_addr_blocks + 0x4201eaa0 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4201eaa0 range_read_addr_blocks + .rodata.__esp_system_init_fn_init_show_cpu_freq.str1.4 + 0x4201eaf8 0x51 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.__esp_system_init_fn_init_flash.str1.4 + 0x4201eaf8 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.__func__.0 + 0x4201eaf8 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.str1.4 + 0x4201eb18 0x4e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.4 + 0x4201eb18 0x3a esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .rodata.__func__.0 + 0x4201eb18 0x13 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x4201eb2b 0x1 + .srodata 0x4201eb2c 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x4201eb31 0x52 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.4 + 0x4201eb31 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x4201eb31 0x3 + .rodata.__func__.1 + 0x4201eb34 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.str1.4 + 0x4201eb41 0x60 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x4201eb41 0x3 + .rodata.__func__.0 + 0x4201eb44 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .rodata.str1.4 + 0x4201eb5e 0x3a esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + *fill* 0x4201eb5e 0x2 + .rodata.__func__.0 + 0x4201eb60 0x13 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + *fill* 0x4201eb73 0x1 + .rodata.cache_error_msg + 0x4201eb74 0x13 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x4201eb74 cache_error_msg + .rodata.esp_panic_handler.str1.4 + 0x4201eb87 0x87 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.do_system_init_fn.str1.4 + 0x4201eb87 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x4201eb87 0x1 + .srodata.g_startup_fn + 0x4201eb88 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4201eb88 g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x4201eb8c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x4201eb8c 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.panic_print_register_array.str1.4 + 0x4201eb8c 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_print_basic_backtrace.str1.4 + 0x4201eb8c 0x1f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_assist_debug_details.str1.4 + 0x4201eb8c 0x8d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_cache_err_details.str1.4 + 0x4201eb8c 0x45 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_print_registers.str1.4 + 0x4201eb8c 0x18 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_soc_fill_info.str1.4 + 0x4201eb8c 0x53 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x4201eb8c 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x4201eb8c 0x30d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason.0 + 0x4201eb8c 0x40 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata 0x4201ebcc 0x94 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.esp_log_cache_set_level.str1.4 + 0x4201ec60 0x95 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__.0 + 0x4201ec60 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__.1 + 0x4201ec78 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.5 + 0x4201ec90 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x4201eca1 0x3 + .rodata.__func__.6 + 0x4201eca4 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x4201ecb6 0x2 + .rodata.__func__.10 + 0x4201ecb8 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x4201ecd2 0x2 + .rodata.__func__.11 + 0x4201ecd4 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x4201eced 0x3 + .rodata.__func__.12 + 0x4201ecf0 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x4201ed01 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.heap_caps_init.str1.4 + 0x4201ed01 0x11c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x4201ed01 0x3 + .rodata.__func__.1 + 0x4201ed04 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__.2 + 0x4201ed18 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x4201ed27 0x1 + .rodata.__func__.3 + 0x4201ed28 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.s_prepare_reserved_regions.str1.4 + 0x4201ed36 0xfa esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x4201ed36 0x2 + .rodata.__func__.0 + 0x4201ed38 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x4201ed53 0x1 + .srodata.soc_memory_region_count + 0x4201ed54 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x4201ed54 soc_memory_region_count + .rodata.soc_memory_regions + 0x4201ed58 0x78 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x4201ed58 soc_memory_regions + .rodata.str1.4 + 0x4201edd0 0xb esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_types + 0x4201edd0 0x20 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x4201edd0 soc_memory_types + .rodata.str1.4 + 0x4201edf0 0xb1 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__.0 + 0x4201edf0 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + *fill* 0x4201ee07 0x1 + .rodata.__func__.2 + 0x4201ee08 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.esp_crypto_dpa_set_level.str1.4 + 0x4201ee17 0x87 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + *fill* 0x4201ee17 0x1 + .rodata.__func__.0 + 0x4201ee18 0x19 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x4201ee31 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.is_vect_desc_usable.str1.4 + 0x4201ee31 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_alloc_intrstatus.str1.4 + 0x4201ee31 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4201ee31 0x3 + .rodata.__func__.2 + 0x4201ee34 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4201ee45 0x3 + .rodata.__func__.5 + 0x4201ee48 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4201ee62 0x2 + .rodata.__func__.6 + 0x4201ee64 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4201ee7a 0x2 + .rodata.__func__.7 + 0x4201ee7c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4201ee95 0x3 + .rodata.__func__.9 + 0x4201ee98 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__.10 + 0x4201eeac 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.rtcio_ll_wakeup_is_enabled.str1.4 + 0x4201eec1 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x4201eec1 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x4201eec1 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x4201eec1 0x3 + .rodata.__func__.0 + 0x4201eec4 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x4201eedf 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + *fill* 0x4201eedf 0x1 + .rodata.__func__.1 + 0x4201eee0 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + *fill* 0x4201ef03 0x1 + .rodata.__func__.2 + 0x4201ef04 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + *fill* 0x4201ef1f 0x1 + .rodata.__func__.3 + 0x4201ef20 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + *fill* 0x4201ef3b 0x1 + .rodata.__func__.4 + 0x4201ef3c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + *fill* 0x4201ef56 0x2 + .rodata.__func__.5 + 0x4201ef58 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .rodata.__func__.6 + 0x4201ef74 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .rodata.pmu_power_domain_force_default.str1.4 + 0x4201ef8e 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .rodata.pmu_hp_system_param_default.str1.4 + 0x4201ef8e 0xe esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .rodata.pmu_hp_system_init.str1.4 + 0x4201ef8e 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201ef8e 0x2 + .rodata.__func__.0 + 0x4201ef90 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201efaf 0x1 + .rodata.__func__.1 + 0x4201efb0 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .rodata.__func__.2 + 0x4201efcc 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201efe7 0x1 + .rodata.__func__.3 + 0x4201efe8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .rodata.__func__.4 + 0x4201f004 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201f01f 0x1 + .rodata.__func__.10 + 0x4201f020 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201f033 0x1 + .rodata.__func__.11 + 0x4201f034 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + *fill* 0x4201f047 0x1 + .rodata 0x4201f048 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .rodata.rtc_clk_cal_internal.str1.4 + 0x4201f058 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_cal.str1.4 + 0x4201f058 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.4 + 0x4201f058 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__.0 + 0x4201f058 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x4201f06f 0x1 + .rodata.__func__.1 + 0x4201f070 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x4201f085 0x3 + .rodata.__func__.2 + 0x4201f088 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.set_ocode_by_efuse.str1.4 + 0x4201f094 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .rodata.calibrate_ocode.str1.4 + 0x4201f094 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .rodata.__func__.0 + 0x4201f094 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .rodata.s_sleep_hook_register.str1.4 + 0x4201f0a7 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.str1.4 + 0x4201f0a7 0x1c3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x4201f0a7 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x4201f0a7 0x1 + .rodata.__func__.4 + 0x4201f0a8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.pmu_hp_system_power_param_default.str1.4 + 0x4201f0bc 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_clock_param_default.str1.4 + 0x4201f0bc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_digital_param_default.str1.4 + 0x4201f0bc 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_analog_param_default.str1.4 + 0x4201f0bc 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_retention_param_default.str1.4 + 0x4201f0bc 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_lp_system_power_param_default.str1.4 + 0x4201f0bc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_lp_system_analog_param_default.str1.4 + 0x4201f0bc 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.lp_analog.0 + 0x4201f0bc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.1 + 0x4201f0d4 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + *fill* 0x4201f0f7 0x1 + .rodata.lp_power.2 + 0x4201f0f8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.3 + 0x4201f110 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + *fill* 0x4201f132 0x2 + .rodata.hp_retention.4 + 0x4201f134 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.5 + 0x4201f14c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + *fill* 0x4201f172 0x2 + .rodata.hp_analog.6 + 0x4201f174 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.7 + 0x4201f198 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + *fill* 0x4201f1bb 0x1 + .rodata.hp_digital.8 + 0x4201f1bc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.9 + 0x4201f1c8 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_clock.10 + 0x4201f1ec 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.11 + 0x4201f21c 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + *fill* 0x4201f23e 0x2 + .rodata.hp_power.12 + 0x4201f240 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.13 + 0x4201f264 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.s_sar_power_release.str1.4 + 0x4201f286 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x4201f286 0x2 + .rodata.__func__.0 + 0x4201f288 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.sleep_clock_system_retention_init.str1.4 + 0x4201f29c 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .rodata.__FUNCTION__.0 + 0x4201f29c 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + *fill* 0x4201f2be 0x2 + .rodata.pcr_regs_retention.1 + 0x4201f2c0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .rodata.sleep_retention_entries_try_create_bonding.str1.4 + 0x4201f318 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_entries_get_destroy_context.str1.4 + 0x4201f318 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_entries_do_destroy.str1.4 + 0x4201f318 0x4d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_entries_check_and_create_default.str1.4 + 0x4201f318 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_entries_create.str1.4 + 0x4201f318 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.sleep_retention_module_init.str1.4 + 0x4201f318 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.5 + 0x4201f318 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + *fill* 0x4201f343 0x1 + .rodata.bonding_dummy.6 + 0x4201f344 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.7 + 0x4201f370 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.8 + 0x4201f39c 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + *fill* 0x4201f3bf 0x1 + .rodata.__func__.10 + 0x4201f3c0 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + *fill* 0x4201f3f1 0x3 + .rodata.__func__.11 + 0x4201f3f4 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + *fill* 0x4201f417 0x1 + .rodata.final_dummy.12 + 0x4201f418 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.__func__.13 + 0x4201f444 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .rodata.regdma_link_init_continuous.str1.4 + 0x4201f463 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_init_wrapper.str1.4 + 0x4201f463 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_get_next.str1.4 + 0x4201f463 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_recursive_impl.str1.4 + 0x4201f463 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_get_instance.str1.4 + 0x4201f463 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_get_stats.str1.4 + 0x4201f463 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_update_stats.str1.4 + 0x4201f463 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_init_addr_map.str1.4 + 0x4201f463 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_init.str1.4 + 0x4201f463 0xf esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.regdma_link_update_next.str1.4 + 0x4201f463 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f463 0x1 + .rodata.__func__.0 + 0x4201f464 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.4 + 0x4201f480 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f4a2 0x2 + .rodata.__func__.5 + 0x4201f4a4 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f4c6 0x2 + .rodata.__func__.6 + 0x4201f4c8 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f4e5 0x3 + .rodata.__func__.7 + 0x4201f4e8 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f505 0x3 + .rodata.__func__.8 + 0x4201f508 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f525 0x3 + .rodata.updatefn.9 + 0x4201f528 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.updatefn_b.10 + 0x4201f538 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.11 + 0x4201f548 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.14 + 0x4201f560 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f575 0x3 + .rodata.__func__.15 + 0x4201f578 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f591 0x3 + .rodata.__func__.16 + 0x4201f594 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f5ad 0x3 + .rodata.stats_offset.17 + 0x4201f5b0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.18 + 0x4201f5d0 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f5e6 0x2 + .rodata.nextfn0.19 + 0x4201f5e8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.nextfn1.20 + 0x4201f5f8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.21 + 0x4201f608 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f61d 0x3 + .rodata.__func__.22 + 0x4201f620 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f63b 0x1 + .rodata.initfn.23 + 0x4201f63c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.initfn_b.24 + 0x4201f64c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.__func__.25 + 0x4201f65c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f675 0x3 + .rodata.__func__.26 + 0x4201f678 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f689 0x3 + .rodata.__func__.27 + 0x4201f68c 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f6a9 0x3 + .rodata.__func__.28 + 0x4201f6ac 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f6ca 0x2 + .rodata.__func__.29 + 0x4201f6cc 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f6ed 0x3 + .rodata.__func__.30 + 0x4201f6f0 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f713 0x1 + .rodata.__func__.31 + 0x4201f714 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f72a 0x2 + .rodata.__func__.32 + 0x4201f72c 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f743 0x1 + .rodata.__func__.33 + 0x4201f744 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + *fill* 0x4201f75e 0x2 + .rodata.__func__.34 + 0x4201f760 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .rodata.main_task.str1.4 + 0x4201f77c 0xba esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.esp_startup_start_app.str1.4 + 0x4201f77c 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__.0 + 0x4201f77c 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x4201f786 0x2 + .rodata.__func__.1 + 0x4201f788 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x4201f79e 0xb2 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.4 + 0x4201f79e 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x4201f79e 0x37 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolder.str1.4 + 0x4201f79e 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x4201f79e 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericSend.str1.4 + 0x4201f79e 0xfb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvInitialiseMutex.str1.4 + 0x4201f79e 0x3b esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x4201f79e 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x4201f79e 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceive.str1.4 + 0x4201f79e 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceiveFromISR.str1.4 + 0x4201f79e 0x76 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f79e 0x2 + .rodata.__func__.2 + 0x4201f7a0 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f7ad 0x3 + .rodata.__func__.7 + 0x4201f7b0 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f7c5 0x3 + .rodata.__func__.9 + 0x4201f7c8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.11 + 0x4201f7dc 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f7ee 0x2 + .rodata.__func__.13 + 0x4201f7f0 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f80b 0x1 + .rodata.__func__.14 + 0x4201f80c 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f81e 0x2 + .rodata.__func__.15 + 0x4201f820 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f83e 0x2 + .rodata.__func__.17 + 0x4201f840 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f859 0x3 + .rodata.__func__.18 + 0x4201f85c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f875 0x3 + .rodata.__func__.20 + 0x4201f878 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f88d 0x3 + .rodata.__func__.21 + 0x4201f890 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.23 + 0x4201f8a4 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4201f8be 0x2 + .rodata.__func__.24 + 0x4201f8c0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.25 + 0x4201f8d4 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x4201f8e7 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvDeleteTCB.str1.4 + 0x4201f8e7 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvInitialiseNewTask.str1.4 + 0x4201f8e7 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelete.str1.4 + 0x4201f8e7 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.eTaskGetState.str1.4 + 0x4201f8e7 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTick.str1.4 + 0x4201f8e7 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskResumeAll.str1.4 + 0x4201f8e7 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSwitchContext.str1.4 + 0x4201f8e7 0x45 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPlaceOnEventList.str1.4 + 0x4201f8e7 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x4201f8e7 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetTimeOutState.str1.4 + 0x4201f8e7 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCheckForTimeOut.str1.4 + 0x4201f8e7 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskPriorityDisinherit.str1.4 + 0x4201f8e7 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x4201f8e7 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x4201f8e7 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotify.str1.4 + 0x4201f8e7 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreatePinnedToCore.str1.4 + 0x4201f8e7 0x101 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x4201f8e7 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvCreateIdleTasks.str1.4 + 0x4201f8e7 0x5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskStartScheduler.str1.4 + 0x4201f8e7 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandleForCore.str1.4 + 0x4201f8e7 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f8e7 0x1 + .rodata.__func__.2 + 0x4201f8e8 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f909 0x3 + .rodata.__func__.3 + 0x4201f90c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f92a 0x2 + .rodata.__func__.4 + 0x4201f92c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f94a 0x2 + .rodata.__func__.5 + 0x4201f94c 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f961 0x3 + .rodata.__func__.6 + 0x4201f964 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.8 + 0x4201f97c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201f99a 0x2 + .rodata.__func__.12 + 0x4201f99c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.13 + 0x4201f9b4 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.14 + 0x4201f9d8 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.16 + 0x4201f9f0 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa05 0x3 + .rodata.__func__.19 + 0x4201fa08 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa21 0x3 + .rodata.__func__.22 + 0x4201fa24 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa3a 0x2 + .rodata.__func__.23 + 0x4201fa3c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa4f 0x1 + .rodata.__func__.24 + 0x4201fa50 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa63 0x1 + .rodata.__func__.29 + 0x4201fa64 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa72 0x2 + .rodata.__func__.30 + 0x4201fa74 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fa83 0x1 + .rodata.__func__.31 + 0x4201fa84 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.38 + 0x4201fa98 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201faa3 0x1 + .rodata.__func__.40 + 0x4201faa4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4201fab1 0x3 + .rodata.__func__.41 + 0x4201fab4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .srodata.uxTopUsedPriority + 0x4201fac0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4201fac0 uxTopUsedPriority + .rodata.vPortTaskWrapper.str1.4 + 0x4201fac4 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortTLSPointersDelCb.str1.4 + 0x4201fac4 0x73 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.pxPortInitialiseStack.str1.4 + 0x4201fac4 0x64 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortExitCritical.str1.4 + 0x4201fac4 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x4201fac4 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__.0 + 0x4201fac4 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x4201fad6 0x2 + .rodata.__func__.2 + 0x4201fad8 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x4201faee 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x4201faee 0x2 + .rodata.__func__.1 + 0x4201faf0 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.vSystimerSetup.str1.4 + 0x4201fb0e 0xa8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + *fill* 0x4201fb0e 0x2 + .rodata.__func__.0 + 0x4201fb10 0xf esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.str1.4 + 0x4201fb1f 0x91 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_locks_init.str1.4 + 0x4201fb1f 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x4201fb1f 0x1 + .rodata.__func__.4 + 0x4201fb20 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x4201fb36 0x2 + .rodata.__func__.3 + 0x4201fb38 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x4201fb4b 0x1 + .rodata.__func__.2 + 0x4201fb4c 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x4201fb61 0x3 + .rodata.__func__.1 + 0x4201fb64 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x4201fb79 0x3 + .rodata.__func__.0 + 0x4201fb7c 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_init_global_stdio.str1.4 + 0x4201fb88 0x6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .rodata.__esp_system_init_fn_init_newlib_stdio.str1.4 + 0x4201fb88 0xd esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x4201fb88 0x46 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.str1.4 + 0x4201fb88 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x4201fb88 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.__func__.0 + 0x4201fb88 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.uart_access.str1.4 + 0x4201fba4 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_fcntl.str1.4 + 0x4201fba4 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_return_char.str1.4 + 0x4201fba4 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_vfs_dev_register.str1.4 + 0x4201fba4 0x87 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.__func__.7 + 0x4201fba4 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbba 0x2 + .rodata.__func__.6 + 0x4201fbbc 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbc7 0x1 + .rodata.__func__.5 + 0x4201fbc8 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbd9 0x3 + .rodata.__func__.4 + 0x4201fbdc 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbe6 0x2 + .rodata.__func__.3 + 0x4201fbe8 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbf3 0x1 + .rodata.__func__.2 + 0x4201fbf4 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fbff 0x1 + .rodata.__func__.1 + 0x4201fc00 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fc0b 0x1 + .rodata.__func__.0 + 0x4201fc0c 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4201fc17 0x1 + .rodata.s_vfs_uart + 0x4201fc18 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_termios + 0x4201fc50 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_select + 0x4201fc6c 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_dir + 0x4201fc84 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .srodata.s_uart_mount_points + 0x4201fcc4 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .srodata.s_ctx + 0x4201fccc 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_reenable_intr_mask.str1.4 + 0x4201fcd4 0x2c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_word_length.str1.4 + 0x4201fcd4 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_stop_bits.str1.4 + 0x4201fcd4 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_baudrate.str1.4 + 0x4201fcd4 0x25 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_pattern_pop_pos.str1.4 + 0x4201fcd4 0x27 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_wait_tx_done.str1.4 + 0x4201fcd4 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x4201fcd4 0x23 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.37 + 0x4201fcd4 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fce5 0x3 + .rodata.__FUNCTION__.35 + 0x4201fce8 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd03 0x1 + .rodata.__FUNCTION__.34 + 0x4201fd04 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__func__.29 + 0x4201fd1c 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd2e 0x2 + .rodata.__FUNCTION__.28 + 0x4201fd30 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd42 0x2 + .rodata.__FUNCTION__.7 + 0x4201fd44 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd56 0x2 + .rodata.__FUNCTION__.6 + 0x4201fd58 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd6a 0x2 + .rodata.__FUNCTION__.5 + 0x4201fd6c 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.4 + 0x4201fd7c 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__.3 + 0x4201fd8c 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fd9f 0x1 + .rodata.__FUNCTION__.2 + 0x4201fda0 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fdb3 0x1 + .rodata.__FUNCTION__.1 + 0x4201fdb4 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x4201fdc9 0x3 + .rodata.__FUNCTION__.0 + 0x4201fdcc 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.usb_serial_jtag_return_char.str1.4 + 0x4201fde1 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.__esp_system_init_fn_init_vfs_usj_sec.str1.4 + 0x4201fde1 0xf esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x4201fde1 0x3 + .rodata.__func__.0 + 0x4201fde4 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.s_vfs_jtag + 0x4201fe00 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.s_vfs_jtag_termios + 0x4201fe38 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.s_vfs_jtag_select + 0x4201fe54 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.console_open.str1.4 + 0x4201fe6c 0x1b esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.esp_vfs_dev_console_register.str1.4 + 0x4201fe6c 0xd esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console + 0x4201fe6c 0x38 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_termios + 0x4201fea4 0x1c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_select + 0x4201fec0 0x18 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_dir + 0x4201fed8 0x40 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.esp_minify_vfs.str1.4 + 0x4201ff18 0x27 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.translate_path.str1.4 + 0x4201ff18 0x43 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__.1 + 0x4201ff18 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.vfs_null_open.str1.4 + 0x4201ff27 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.esp_vfs_null_register.str1.4 + 0x4201ff27 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4201ff27 0x1 + .rodata.s_vfs_null + 0x4201ff28 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.s_vfs_null_dir + 0x4201ff60 0x40 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.app_main.str1.4 + 0x4201ffa0 0x6 esp-idf/main/libmain.a(Main.c.obj) + .rodata.intr_get_item.str1.4 + 0x4201ffa0 0x70 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata._global_interrupt_handler.str1.4 + 0x4201ffa0 0x83 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.__func__.0 + 0x4201ffa0 0x1a esp-idf/riscv/libriscv.a(interrupt.c.obj) + *fill* 0x4201ffba 0x2 + .rodata.__func__.1 + 0x4201ffbc 0x18 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.gpio_input_disable.str1.4 + 0x4201ffd4 0x34 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_output_enable.str1.4 + 0x4201ffd4 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x4201ffd4 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x4201ffd4 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x4201ffd4 0x89 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.2 + 0x4201ffd4 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x4201ffe7 0x1 + .rodata.__FUNCTION__.3 + 0x4201ffe8 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x4201fffa 0x2 + .rodata.__FUNCTION__.4 + 0x4201fffc 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020012 0x2 + .rodata.__FUNCTION__.5 + 0x42020014 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.6 + 0x4202002c 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020041 0x3 + .rodata.__FUNCTION__.7 + 0x42020044 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x4202005b 0x1 + .rodata.__FUNCTION__.8 + 0x4202005c 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020075 0x3 + .rodata.__FUNCTION__.9 + 0x42020078 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020092 0x2 + .rodata.__FUNCTION__.10 + 0x42020094 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420200ad 0x3 + .rodata.__FUNCTION__.11 + 0x420200b0 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420200c9 0x3 + .rodata.__FUNCTION__.12 + 0x420200cc 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.13 + 0x420200e4 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420200fd 0x3 + .rodata.__FUNCTION__.25 + 0x42020100 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020113 0x1 + .rodata.__FUNCTION__.29 + 0x42020114 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020123 0x1 + .rodata.__FUNCTION__.30 + 0x42020124 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.31 + 0x42020134 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020147 0x1 + .rodata.__FUNCTION__.32 + 0x42020148 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.33 + 0x4202015c 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x4202016e 0x2 + .rodata.__FUNCTION__.34 + 0x42020170 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020182 0x2 + .rodata.__FUNCTION__.35 + 0x42020184 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42020195 0x3 + .rodata.__FUNCTION__.36 + 0x42020198 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420201ab 0x1 + .rodata.__FUNCTION__.37 + 0x420201ac 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420201be 0x2 + .rodata.__FUNCTION__.38 + 0x420201c0 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420201d1 0x3 + .rodata.__FUNCTION__.39 + 0x420201d4 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__.40 + 0x420201e4 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x420201f3 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x420201f3 0x1 + .rodata.__FUNCTION__.16 + 0x420201f4 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.str1.4 + 0x42020204 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__.1 + 0x42020204 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.s_get_bus_mask.str1.4 + 0x4202022c 0x37 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_irom_region.str1.4 + 0x4202022c 0xbe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_drom_region.str1.4 + 0x4202022c 0x8b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_init.str1.4 + 0x4202022c 0x5f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x4202022c 0x46 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 + 0x4202022c 0x21 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.4 + 0x4202022c 0x142 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.4 + 0x4202022c 0x8c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x4202022c 0x64 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__.1 + 0x4202022c 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x42020243 0x1 + .rodata.__FUNCTION__.2 + 0x42020244 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x42020252 0x2 + .rodata.__func__.4 + 0x42020254 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__.5 + 0x42020260 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__.8 + 0x4202026c 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x42020282 0x2 + .rodata.__func__.9 + 0x42020284 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__.10 + 0x42020298 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420202ae 0x2 + .rodata.__func__.11 + 0x420202b0 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.4 + 0x420202c1 0x5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420202c1 0x3 + .rodata.g_mmu_mem_regions + 0x420202c4 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x420202c4 g_mmu_mem_regions + .rodata.s_merge_contiguous_pages.str1.4 + 0x420202dc 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_munmap.str1.4 + 0x420202dc 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__.1 + 0x420202dc 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x420202ed 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.4 + 0x420202ed 0x54 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x420202ed 0x3 + .rodata.__func__.0 + 0x420202f0 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .srodata.s_mspi_io_num_default + 0x42020300 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.4 + 0x42020306 0x168 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x42020306 0x7b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x42020306 0x2 + .rodata.io_mode_str + 0x42020308 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.spimem_flash_ll_get_source_freq_mhz.str1.4 + 0x420203bc 0x42 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.esp_flash_init_default_chip.str1.4 + 0x420203bc 0x124 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__.0 + 0x420203bc 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__.1 + 0x420203d8 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x420203fc 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x42020406 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x42020406 0x2 + .rodata.__func__.0 + 0x42020408 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.str1.4 + 0x42020421 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.4 + 0x42020421 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x42020421 0x3 + .rodata.__func__.0 + 0x42020424 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x4202043b 0x1 + .rodata.__func__.1 + 0x4202043c 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.add_entry.str1.4 + 0x42020453 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.delete_entry.str1.4 + 0x42020453 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_timeout_abort.str1.4 + 0x42020453 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_timeout_handling.str1.4 + 0x42020453 0x33 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_add.str1.4 + 0x42020453 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.subscribe_idle.str1.4 + 0x42020453 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.4 + 0x42020453 0x81 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_print_triggered_tasks.str1.4 + 0x42020453 0xad esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_isr.str1.4 + 0x42020453 0x27 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42020453 0x1 + .rodata.__FUNCTION__.5 + 0x42020454 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42020467 0x1 + .rodata.__FUNCTION__.7 + 0x42020468 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42020472 0x2 + .rodata.__FUNCTION__.8 + 0x42020474 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42020485 0x3 + .rodata.__func__.12 + 0x42020488 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42020497 0x1 + .rodata.__func__.13 + 0x42020498 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x420204a5 0x3 + .rodata.__FUNCTION__.14 + 0x420204a8 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x420204ba 0x2 + .rodata.__func__.15 + 0x420204bc 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.str1.4 + 0x420204d3 0x3f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x420204d3 0x1 + .srodata.esp_unknown_msg + 0x420204d4 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x420204da 0x1826 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x420204da 0x2 + .rodata.esp_err_msg_table + 0x420204dc 0x6d8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x42020bb4 0x4d esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .rodata.__func__.1 + 0x42020bb4 0x17 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + *fill* 0x42020bcb 0x1 + .rodata.__func__.0 + 0x42020bcc 0x16 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .rodata.get_flash_clock_divider.str1.4 + 0x42020be2 0x7c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.gpio_hal_intr_enable_on_core.str1.4 + 0x42020be2 0x66 esp-idf/hal/libhal.a(gpio_hal.c.obj) + *fill* 0x42020be2 0x2 + .rodata.__func__.0 + 0x42020be4 0x1c esp-idf/hal/libhal.a(gpio_hal.c.obj) + .rodata.str1.4 + 0x42020c00 0x52 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .rodata.modem_clock_hal_select_ble_rtc_timer_lpclk_source.str1.4 + 0x42020c00 0x20 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .rodata.modem_clock_hal_enable_wifipwr_clock.str1.4 + 0x42020c00 0x8 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .rodata.__func__.0 + 0x42020c00 0x25 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + *fill* 0x42020c25 0x3 + .rodata.__func__.2 + 0x42020c28 0x29 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + *fill* 0x42020c51 0x3 + .rodata.__func__.3 + 0x42020c54 0x29 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + *fill* 0x42020c7d 0x3 + .rodata.__func__.4 + 0x42020c80 0x32 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + *fill* 0x42020cb2 0x2 + .rodata.__func__.5 + 0x42020cb4 0x2c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .rodata.__func__.6 + 0x42020ce0 0x2c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .rodata.pau_hal_set_regdma_wait_timeout.str1.4 + 0x42020d0c 0x42 esp-idf/hal/libhal.a(pau_hal.c.obj) + .rodata.__func__.0 + 0x42020d0c 0x20 esp-idf/hal/libhal.a(pau_hal.c.obj) + .rodata.apm_hal_apm_ctrl_filter_enable.str1.4 + 0x42020d2c 0x142 esp-idf/hal/libhal.a(apm_hal.c.obj) + .rodata.str1.4 + 0x42020d2c 0x330 esp-idf/soc/libsoc.a(interrupts.c.obj) + .rodata.esp_isr_names + 0x42020d2c 0x134 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x42020d2c esp_isr_names + .rodata.GPIO_HOLD_MASK + 0x42020e60 0x7c esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x42020e60 GPIO_HOLD_MASK + .rodata.rtc_io_num_map + 0x42020edc 0x7c esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x42020edc rtc_io_num_map + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x42020f58 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__.0 + 0x42020f58 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x42020f75 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 + 0x42020f75 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x42020f75 0x3 + .rodata.__func__.0 + 0x42020f78 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x42020f99 0x3 + .rodata.__func__.1 + 0x42020f9c 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x42020fba 0x2 + .srodata.g_spi_lock_main_flash_dev + 0x42020fbc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x42020fbc g_spi_lock_main_flash_dev + .rodata.adc_lock_release.str1.4 + 0x42020fc0 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.4 + 0x42020fc0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__.0 + 0x42020fc0 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.__FUNCTION__.1 + 0x42020fd4 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.str1.4 + 0x42020fe5 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.init_timer_task.str1.4 + 0x42020fe5 0x6c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.4 + 0x42020fe5 0x1d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x42020fe5 0x3 + .rodata.__func__.0 + 0x42020fe8 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.ets_timer_setfn.str1.4 + 0x42020ff5 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.str1.4 + 0x42020ff5 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x42020ff5 0x3 + .rodata.__func__.1 + 0x42020ff8 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x42021009 0x3 + .rodata.__func__.0 + 0x4202100c 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.prvReturnItemByteBuf.str1.4 + 0x4202101c 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x4202101c 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x4202101c 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.4 + 0x4202101c 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.4 + 0x4202101c 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendComplete.str1.4 + 0x4202101c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSend.str1.4 + 0x4202101c 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceive.str1.4 + 0x4202101c 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4 + 0x4202101c 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x4202102f 0x1 + .rodata.__func__.7 + 0x42021030 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x4202104a 0x2 + .rodata.__func__.11 + 0x4202104c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x42021062 0x2 + .rodata.__func__.18 + 0x42021064 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x42021076 0x2 + .rodata.__func__.19 + 0x42021078 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x4202108b 0x1 + .rodata.__func__.21 + 0x4202108c 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.28 + 0x4202109c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.adc_digi_get_io_num.str1.4 + 0x420210b2 0x50 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc_oneshot_ll_enable.str1.4 + 0x420210b2 0x45 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc1_pad_get_io_num.str1.4 + 0x420210b2 0x29 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc1_config_channel_atten.str1.4 + 0x420210b2 0x4b esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.check_adc_oneshot_driver_conflict.str1.4 + 0x420210b2 0xa8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + *fill* 0x420210b2 0x2 + .rodata.__func__.0 + 0x420210b4 0x1f esp-idf/driver/libdriver.a(adc_legacy.c.obj) + *fill* 0x420210d3 0x1 + .rodata.__func__.1 + 0x420210d4 0x1e esp-idf/driver/libdriver.a(adc_legacy.c.obj) + *fill* 0x420210f2 0x2 + .rodata.__func__.2 + 0x420210f4 0x1b esp-idf/driver/libdriver.a(adc_legacy.c.obj) + *fill* 0x4202110f 0x1 + .rodata.__func__.3 + 0x42021110 0x16 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + *fill* 0x42021126 0x2 + .rodata.__func__.6 + 0x42021128 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__.7 + 0x4202113c 0x1a esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.coex_pre_init.str1.4 + 0x42021156 0x1b C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .rodata.esp_coex_adapter_register.str1.4 + 0x42021156 0xbe C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .rodata.str1.4 + 0x42021156 0x30 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + *fill* 0x42021156 0x2 + .rodata 0x42021158 0x28 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .rodata.coex_rom_osi_funcs_init.str1.4 + 0x42021180 0x18 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .rodata.load_partitions.str1.4 + 0x42021180 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.ensure_partitions_loaded.str1.4 + 0x42021180 0x2b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.4 + 0x42021180 0x4b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_next.str1.4 + 0x42021180 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_get.str1.4 + 0x42021180 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__.2 + 0x42021180 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x42021192 0x2 + .rodata.__func__.3 + 0x42021194 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_efuse_rtc_calib_get_ver.str1.4 + 0x420211a7 0x58 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_init_code.str1.4 + 0x420211a7 0xe4 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_chan_compens.str1.4 + 0x420211a7 0x93 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + *fill* 0x420211a7 0x1 + .rodata.__func__.1 + 0x420211a8 0x25 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + *fill* 0x420211cd 0x3 + .rodata.__func__.2 + 0x420211d0 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x420211f2 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_xtal_get_freq_mhz.str1.4 + 0x420211f2 0x43 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + *fill* 0x420211f2 0x2 + .rodata.__func__.0 + 0x420211f4 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__.1 + 0x42021210 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.adc_oneshot_ll_disable_channel.str1.4 + 0x4202122e 0x45 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x4202122e 0x2 + .rodata.__func__.0 + 0x42021230 0x1a esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x4202124a 0x2 + .rodata.__func__.1 + 0x4202124c 0x1f esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x4202126b 0x1 + .rodata.__func__.2 + 0x4202126c 0x1e esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x4202128a 0x2 + .rodata.__func__.3 + 0x4202128c 0x1b esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x420212a7 0x1 + .rodata.__func__.4 + 0x420212a8 0x16 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x420212be 0x2 + .rodata.__func__.5 + 0x420212c0 0x19 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x420212d9 0x3 + .rodata.__func__.6 + 0x420212dc 0x1f esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x420212fb 0x1 + .rodata.__func__.7 + 0x420212fc 0x1d esp-idf/hal/libhal.a(adc_hal_common.c.obj) + *fill* 0x42021319 0x3 + .rodata.adc_channel_io_map + 0x4202131c 0x1c esp-idf/soc/libsoc.a(adc_periph.c.obj) + 0x4202131c adc_channel_io_map + .rodata.lib_printf.str1.4 + 0x42021338 0x10 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .rodata.coexist_printf.str1.4 + 0x42021338 0x8 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .rodata.esp_ota_get_running_partition.str1.4 + 0x42021338 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__.1 + 0x42021338 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.str1.4 + 0x42021356 0x2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + 0x42021398 . = ALIGN (0x4) + *fill* 0x42021356 0x2 + 0x42021358 __init_priority_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array.*) + 0x42021358 __init_priority_array_end = ABSOLUTE (.) + 0x42021358 . = ALIGN (0x4) + 0x42021358 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array) + .init_array 0x42021358 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .init_array 0x4202135c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .init_array 0x42021360 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .init_array 0x42021364 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .init_array 0x42021368 0x8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .init_array 0x42021370 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + 0x42021374 __init_array_end = ABSOLUTE (.) + 0x42021374 . = ALIGN (0x4) + 0x42021374 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x42021374 0x20 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x42021394 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x42021394 . = ALIGN (0x4) + 0x42021394 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.1 + 0x42021394 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.10 + 0x4202139c 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.20 + 0x420213a4 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .esp_system_init_fn.21 + 0x420213ac 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.100 + 0x420213b4 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .esp_system_init_fn.100 + 0x420213bc 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.101 + 0x420213c4 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .esp_system_init_fn.101 + 0x420213cc 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .esp_system_init_fn.102 + 0x420213d4 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .esp_system_init_fn.102 + 0x420213dc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .esp_system_init_fn.103 + 0x420213e4 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) + .esp_system_init_fn.104 + 0x420213ec 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.105 + 0x420213f4 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.105 + 0x420213fc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .esp_system_init_fn.106 + 0x42021404 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .esp_system_init_fn.110 + 0x4202140c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .esp_system_init_fn.112 + 0x42021414 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .esp_system_init_fn.113 + 0x4202141c 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .esp_system_init_fn.114 + 0x42021424 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .esp_system_init_fn.115 + 0x4202142c 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .esp_system_init_fn.130 + 0x42021434 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.140 + 0x4202143c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.204 + 0x42021444 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.230 + 0x4202144c 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .esp_system_init_fn.999 + 0x42021454 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4202145c _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x4202145c _rodata_end = ABSOLUTE (.) + 0x4202145c . = ALIGN (ALIGNOF (.eh_frame_hdr)) + 0x00000001 ASSERT ((ADDR (.eh_frame_hdr) == (ADDR (.flash.rodata) + SIZEOF (.flash.rodata))), The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.) + +.eh_frame_hdr 0x4202145c 0x0 + 0x4202145c . = ALIGN (ALIGNOF (.eh_frame)) + 0x00000001 ASSERT ((ADDR (.eh_frame) == (ADDR (.eh_frame_hdr) + SIZEOF (.eh_frame_hdr))), The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.) + +.eh_frame 0x4202145c 0x0 + 0x4202145c . = ALIGN (ALIGNOF (.flash.tdata)) + 0x00000001 ASSERT ((ADDR (.flash.tdata) == (ADDR (.eh_frame) + SIZEOF (.eh_frame))), The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.) + +.flash.tdata 0x4202145c 0x0 + 0x4202145c _thread_local_data_start = ABSOLUTE (.) + *(.tdata .tdata.* .gnu.linkonce.td.*) + 0x4202145c . = ALIGN (ALIGNOF (.flash.tbss)) + 0x4202145c _thread_local_data_end = ABSOLUTE (.) + 0x00000001 ASSERT ((ADDR (.flash.tbss) == (ADDR (.flash.tdata) + SIZEOF (.flash.tdata))), The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.) + +.flash.tbss 0x4202145c 0x0 + 0x4202145c _thread_local_bss_start = ABSOLUTE (.) + *(.tbss .tbss.* .gnu.linkonce.tb.*) + *(.tcommon .tcommon.*) + 0x4202145c _thread_local_bss_end = ABSOLUTE (.) + +.flash.rodata_noload + 0x4202145c 0x0 + 0x4202145c _rodata_reserved_end = ADDR (.flash.tbss) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + +.dram0.heap_start + 0x4080d668 0x8 + 0x4080d670 . = ALIGN (0x10) + *fill* 0x4080d668 0x8 + 0x4080d670 _heap_start = ABSOLUTE (.) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0x58c8 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x00000038 0x40 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_aranges + 0x00000078 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000118 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000001e0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x000001f8 0x48 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000240 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000270 0x50 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_aranges + 0x000002c0 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x00000378 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x000003a0 0x40 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x000003e0 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x00000410 0x70 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000480 0x40 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_aranges + 0x000004c0 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x000004e8 0x38 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x00000520 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x000005a8 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x000005e8 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000640 0x80 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x000006c0 0x50 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_aranges + 0x00000710 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_aranges + 0x00000758 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_aranges + 0x00000780 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_aranges + 0x000007a8 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x000007f0 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000848 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00000888 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x000008b0 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x000008d8 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .debug_aranges + 0x00000908 0x20 esp-idf/log/liblog.a(log_level.c.obj) + .debug_aranges + 0x00000928 0x40 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_aranges + 0x00000968 0x40 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_aranges + 0x000009a8 0x50 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_aranges + 0x000009f8 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_aranges + 0x00000a28 0x128 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00000b50 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x00000ba0 0x48 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000be8 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00000c28 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x00000c40 0x48 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_aranges + 0x00000c88 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_aranges + 0x00000cb0 0x38 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_aranges + 0x00000ce8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x00000d48 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x00000db0 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x00000e98 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x00000ed0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x00000f18 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00000f80 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_aranges + 0x00001058 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001190 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_aranges + 0x000011f0 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_aranges + 0x000012a0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x000012f8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_aranges + 0x00001328 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .debug_aranges + 0x00001348 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001370 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001428 0x1f0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x00001618 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_aranges + 0x00001648 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_aranges + 0x000016a8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001718 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_aranges + 0x00001748 0x180 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_aranges + 0x000018c8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_aranges + 0x00001920 0x278 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_aranges + 0x00001b98 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00001bc0 0x160 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x00001d20 0x298 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x00001fb8 0xb0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00002068 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x000020b8 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x000020e0 0x38 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00002118 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x00002158 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x00002178 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x000021b0 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x00002250 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x00002328 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x00002360 0x28 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_aranges + 0x00002388 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x000023b0 0x50 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x00002400 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x00002460 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x000024e0 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x00002530 0x170 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x000026a0 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x00002728 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00002788 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x000027f0 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00002848 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00002898 0x28 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_aranges + 0x000028c0 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_aranges + 0x000028f0 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00002920 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00002958 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x000029c8 0x120 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_aranges + 0x00002ae8 0x258 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_aranges + 0x00002d40 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_aranges + 0x00002d78 0x118 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_aranges + 0x00002e90 0x68 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_aranges + 0x00002ef8 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x00002f48 0xa8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_aranges + 0x00002ff0 0x238 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00003228 0xa0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_aranges + 0x000032c8 0xb0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_aranges + 0x00003378 0x58 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x000033d0 0x20 esp-idf/main/libmain.a(Main.c.obj) + .debug_aranges + 0x000033f0 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_aranges + 0x00003410 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_aranges + 0x00003450 0x20 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_aranges + 0x00003470 0x20 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .debug_aranges + 0x00003490 0x1d0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_aranges + 0x00003660 0xd8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_aranges + 0x00003738 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00003758 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00003808 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_aranges + 0x00003870 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x000038b8 0xc8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00003980 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00003998 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_aranges + 0x000039b8 0x50 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_aranges + 0x00003a08 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x00003a38 0x70 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00003aa8 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x00003b20 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00003b78 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00003c88 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00003cf0 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00003db8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00003df8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00003e10 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00003f20 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00003f98 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x00003fc8 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00004020 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x00004088 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x000040b8 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00004198 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x000041e8 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00004208 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x00004230 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_aranges + 0x00004270 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_aranges + 0x00004298 0x38 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_aranges + 0x000042d0 0x80 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00004350 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_aranges + 0x000043d8 0x50 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00004428 0xc0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x000044e8 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00004538 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x00004620 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x00004648 0x80 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_aranges + 0x000046c8 0x50 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_aranges + 0x00004718 0x70 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x00004788 0x68 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_aranges + 0x000047f0 0xd8 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_aranges + 0x000048c8 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x000048e0 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x000048f8 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00004910 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x00004940 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00004968 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00004998 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x000049c8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x000049f0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00004a38 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00004b28 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x00004b98 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_aranges + 0x00004bc0 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00004be0 0x140 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_aranges + 0x00004d20 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x00004e08 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00004e60 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x00004fe0 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x00005110 0x80 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_aranges + 0x00005190 0x90 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00005220 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00005298 0x40 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_aranges + 0x000052d8 0x58 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00005330 0x80 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_aranges + 0x000053b0 0x18 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_aranges + 0x000053c8 0x28 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_aranges + 0x000053f0 0x100 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x000054f0 0x40 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_aranges + 0x00005530 0xe8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x00005618 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_aranges + 0x00005630 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_aranges + 0x00005650 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_aranges + 0x00005670 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_aranges + 0x00005690 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_aranges + 0x000056b0 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_aranges + 0x000056d0 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_aranges + 0x000056f0 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_aranges + 0x00005710 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_aranges + 0x00005730 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_aranges + 0x00005750 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_aranges + 0x00005770 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_aranges + 0x00005790 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x000057a8 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_aranges + 0x000057c8 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_aranges + 0x000057e8 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_aranges + 0x00005808 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_aranges + 0x00005828 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_aranges + 0x00005848 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_aranges + 0x00005868 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_aranges + 0x00005888 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_aranges + 0x000058a8 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x18570f + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x6bf esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x000006bf 0x489 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_info 0x00000b48 0x1254 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00001d9c 0x1401 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000319d 0x2556 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x000056f3 0x97a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000606d 0x196 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x00006203 0x1e1b esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_info 0x0000801e 0xe0e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x00008e2c 0x54d6 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x0000e302 0x1c2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x0000e4c4 0x40ec esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x000125b0 0xe5c8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x00020b78 0x469 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_info 0x00020fe1 0x5d23 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x00026d04 0x5cf esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x000272d3 0x5234 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x0002c507 0x3e7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x0002c8ee 0x1d15 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x0002e603 0xbf7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x0002f1fa 0x3702 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_info 0x000328fc 0xa69 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_info 0x00033365 0x2b9 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_info 0x0003361e 0x4d80 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_info 0x0003839e 0x3831 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0003bbcf 0x3aca esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0003f699 0x1f9d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x00041636 0x921 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00041f57 0x221 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x00042178 0x2ce esp-idf/log/liblog.a(log_write.c.obj) + .debug_info 0x00042446 0xeb esp-idf/log/liblog.a(log_level.c.obj) + .debug_info 0x00042531 0x45f esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_info 0x00042990 0x43e esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_info 0x00042dce 0x460 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_info 0x0004322e 0x238 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_info 0x00043466 0x1c09 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0004506f 0xd29 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x00045d98 0x3d4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0004616c 0x804 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00046970 0x30d esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x00046c7d 0xa72 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_info 0x000476ef 0x15d esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_info 0x0004784c 0x1dc esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_info 0x00047a28 0x875 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x0004829d 0x4d9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x00048776 0x2e37 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0004b5ad 0x582 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0004bb2f 0x2b91 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x0004e6c0 0x744 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0004ee04 0x315a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_info 0x00051f5e 0x54da esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x00057438 0x47b0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_info 0x0005bbe8 0x81cd esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_info 0x00063db5 0x4c2b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x000689e0 0x3cb1 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_info 0x0006c691 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .debug_info 0x0006c6d1 0x239 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_info 0x0006c90a 0x8fc esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0006d206 0xdff5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x0007b1fb 0x375f esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_info 0x0007e95a 0x48d8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_info 0x00083232 0x194d esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00084b7f 0x9d4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_info 0x00085553 0x3c78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_info 0x000891cb 0x3aa6 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_info 0x0008cc71 0x5227 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_info 0x00091e98 0x55c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x000923f4 0x2fa4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x00095398 0x4fc7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x0009a35f 0x1cb7 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0009c016 0x359 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x0009c36f 0xcf1 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x0009d060 0x4428 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x000a1488 0x2e3 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x000a176b 0x26c esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x000a19d7 0x4a1 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x000a1e78 0xe9b esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x000a2d13 0x1034 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x000a3d47 0x1fd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000a3f44 0x16a esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_info 0x000a40ae 0xa2c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000a4ada 0x1713 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x000a61ed 0xe85 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000a7072 0x11bd esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x000a822f 0x631 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x000a8860 0x2165 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x000aa9c5 0xf6d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x000ab932 0x84c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x000ac17e 0x962 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x000acae0 0x5b5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x000ad095 0x1495 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x000ae52a 0x892 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_info 0x000aedbc 0x16a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_info 0x000aef26 0x27e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x000af1a4 0x1de esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x000af382 0x47ce esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000b3b50 0x50a5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_info 0x000b8bf5 0xd3f5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_info 0x000c5fea 0x15ae esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_info 0x000c7598 0x3f6f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_info 0x000cb507 0x5512 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_info 0x000d0a19 0x23f esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x000d0c58 0x209c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_info 0x000d2cf4 0x676d esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x000d9461 0x1e87 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_info 0x000db2e8 0xbfa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_info 0x000dbee2 0xc4c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x000dcb2e 0x264 esp-idf/main/libmain.a(Main.c.obj) + .debug_info 0x000dcd92 0x179 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_info 0x000dcf0b 0x414 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_info 0x000dd31f 0x3e esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_info 0x000dd35d 0x32 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .debug_info 0x000dd38f 0x909f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_info 0x000e642e 0x4e88 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_info 0x000eb2b6 0xcb esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000eb381 0x5e8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000f120f 0xc2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_info 0x000f1e3e 0xba1 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x000f29df 0x3070 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x000f5a4f 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x000f5c10 0x182 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_info 0x000f5d92 0xe34 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_info 0x000f6bc6 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x000f6da3 0x3cc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x000f716f 0x1635 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x000f87a4 0x6d5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x000f8e79 0x4b5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x000fd9d7 0x72e1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00104cb8 0x129d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00105f55 0x9bf esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00106914 0xc31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00107545 0x26f7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00109c3c 0x691c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00110558 0x3d4 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x0011092c 0x806 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x00111132 0x559 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x0011168b 0x4c1d esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x001162a8 0x217d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x00118425 0x4eeb esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x0011d310 0x53e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x0011d84e 0x3be esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x0011dc0c 0xbf7 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_info 0x0011e803 0xb9c esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_info 0x0011f39f 0x9a5 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_info 0x0011fd44 0x4890 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x001245d4 0x108f esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_info 0x00125663 0x62a0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x0012b903 0xa3f9 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x00135cfc 0x4c5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x001361c1 0x67b7 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x0013c978 0x1221 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x0013db99 0x27c5 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_info 0x0014035e 0xfbd esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_info 0x0014131b 0x676f esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x00147a8a 0x2a35 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_info 0x0014a4bf 0xeb1 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_info 0x0014b370 0x2a5 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x0014b615 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x0014b6ed 0xa6 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x0014b793 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x0014b8c7 0x554 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x0014be1b 0x981 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x0014c79c 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x0014c964 0x65c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x0014cfc0 0xd43 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x0014dd03 0x1efb esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_info 0x0014fbfe 0x392b esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x00153529 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_info 0x001535fe 0x31 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0015362f 0x12e3 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_info 0x00154912 0x1e80 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x00156792 0x797 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x00156f29 0x3698 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x0015a5c1 0x914d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x0016370e 0x53a5 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_info 0x00168ab3 0x1ede esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x0016a991 0x142c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x0016bdbd 0x8ab esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_info 0x0016c668 0x4069 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x001706d1 0x2015 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_info 0x001726e6 0xac esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_info 0x00172792 0x2b2 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_info 0x00172a44 0x2c09 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x0017564d 0xfd6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_info 0x00176623 0x1ac9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x001780ec 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_info 0x00178157 0xa02 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_info 0x00178b59 0xac8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_info 0x00179621 0x1038 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_info 0x0017a659 0xb08 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_info 0x0017b161 0x9b3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_info 0x0017bb14 0xc08 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_info 0x0017c71c 0x8b8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_info 0x0017cfd4 0xa49 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_info 0x0017da1d 0xb63 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_info 0x0017e580 0xe46 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_info 0x0017f3c6 0x986 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_info 0x0017fd4c 0x84c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x00180598 0x840 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_info 0x00180dd8 0x872 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_info 0x0018164a 0xa94 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_info 0x001820de 0x8f5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_info 0x001829d3 0x8c9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_info 0x0018329c 0x8bf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_info 0x00183b5b 0x8c5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_info 0x00184420 0x87e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_info 0x00184c9e 0xa71 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_abbrev 0x00000000 0x251c2 + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x2a5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x000002a5 0x238 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_abbrev 0x000004dd 0x31c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000007f9 0x3ca esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000bc3 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000cc9 0x250 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000f19 0x136 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x0000104f 0x382 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_abbrev 0x000013d1 0x267 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x00001638 0x4c9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00001b01 0x11c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00001c1d 0x3ca esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x00001fe7 0x5fa esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x000025e1 0x1f3 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_abbrev 0x000027d4 0x41d esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x00002bf1 0x1f7 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00002de8 0x5a0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x00003388 0x22b esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x000035b3 0x379 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x0000392c 0x321 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x00003c4d 0x370 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_abbrev 0x00003fbd 0x27a esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_abbrev 0x00004237 0x15d esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_abbrev 0x00004394 0x399 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_abbrev 0x0000472d 0x21c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004949 0x346 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004c8f 0x2f4 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00004f83 0x228 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x000051ab 0x133 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x000052de 0x16a esp-idf/log/liblog.a(log_write.c.obj) + .debug_abbrev 0x00005448 0x93 esp-idf/log/liblog.a(log_level.c.obj) + .debug_abbrev 0x000054db 0x1f0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_abbrev 0x000056cb 0x1e3 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_abbrev 0x000058ae 0x21e esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_abbrev 0x00005acc 0x11e esp-idf/log/liblog.a(log_lock.c.obj) + .debug_abbrev 0x00005bea 0x42b esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x00006015 0x366 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000637b 0x1cc esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x00006547 0x2dc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x00006823 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x00006910 0x35d esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_abbrev 0x00006c6d 0x117 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_abbrev 0x00006d84 0x11b esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_abbrev 0x00006e9f 0x2cb esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x0000716a 0x237 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x000073a1 0x630 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x000079d1 0x1af esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x00007b80 0x42b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x00007fab 0x21a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x000081c5 0x47f esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_abbrev 0x00008644 0x5bf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00008c03 0x43f esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_abbrev 0x00009042 0x5d1 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_abbrev 0x00009613 0x488 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x00009a9b 0x39f esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_abbrev 0x00009e3a 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .debug_abbrev 0x00009e62 0x159 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x00009fbb 0x20e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000a1c9 0x805 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0000a9ce 0x356 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_abbrev 0x0000ad24 0x2ec esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_abbrev 0x0000b010 0x2ae esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000b2be 0x292 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_abbrev 0x0000b550 0x5a8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_abbrev 0x0000baf8 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_abbrev 0x0000bda4 0x4d6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_abbrev 0x0000c27a 0x244 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000c4be 0x367 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000c825 0x496 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000ccbb 0x5be esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000d279 0x166 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x0000d3df 0x211 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x0000d5f0 0x43c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x0000da2c 0x111 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x0000db3d 0x145 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x0000dc82 0x202 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x0000de84 0x2a4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x0000e128 0x371 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x0000e499 0x132 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x0000e5cb 0xf8 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_abbrev 0x0000e6c3 0x24c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x0000e90f 0x328 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x0000ec37 0x2ee esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x0000ef25 0x37c esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x0000f2a1 0x1d4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x0000f475 0x4b8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x0000f92d 0x2bc esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x0000fbe9 0x283 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000fe6c 0x22e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x0001009a 0x1a4 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x0001023e 0x517 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x00010755 0x1ff esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_abbrev 0x00010954 0x112 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_abbrev 0x00010a66 0x186 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x00010bec 0x132 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00010d1e 0x4eb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x00011209 0x62f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_abbrev 0x00011838 0x6e4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_abbrev 0x00011f1c 0x31b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_abbrev 0x00012237 0x659 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_abbrev 0x00012890 0x577 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_abbrev 0x00012e07 0x10b esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x00012f12 0x2d7 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_abbrev 0x000131e9 0x596 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0001377f 0x33d esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_abbrev 0x00013abc 0x270 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_abbrev 0x00013d2c 0x25c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x00013f88 0xec esp-idf/main/libmain.a(Main.c.obj) + .debug_abbrev 0x00014074 0x10f esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_abbrev 0x00014183 0x21c esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_abbrev 0x0001439f 0x28 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_abbrev 0x000143c7 0x28 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .debug_abbrev 0x000143ef 0x6e8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_abbrev 0x00014ad7 0x45f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_abbrev 0x00014f36 0x97 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00014fcd 0x5d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x000155a5 0x2c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_abbrev 0x00015869 0x27c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00015ae5 0x575 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x0001605a 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x00016117 0xd7 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_abbrev 0x000161ee 0x297 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_abbrev 0x00016485 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x000165af 0x186 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x00016735 0x402 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x00016b37 0x2a0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00016dd7 0x5b1 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00017388 0x5df esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00017967 0x3cc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00017d33 0x255 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x00017f88 0x154 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000180dc 0x4b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00018590 0x46c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000189fc 0x179 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x00018b75 0x269 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x00018dde 0x1af esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00018f8d 0x3b4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00019341 0x43a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x0001977b 0x3a6 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x00019b21 0x195 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x00019cb6 0x1bf esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x00019e75 0x22b esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_abbrev 0x0001a0a0 0x22b esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_abbrev 0x0001a2cb 0x2a0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_abbrev 0x0001a56b 0x4ba esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0001aa25 0x365 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_abbrev 0x0001ad8a 0x45a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0001b1e4 0x595 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0001b779 0x215 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x0001b98e 0x400 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x0001bd8e 0x2a7 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x0001c035 0x2cd esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_abbrev 0x0001c302 0x287 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_abbrev 0x0001c589 0x4c0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x0001ca49 0x315 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_abbrev 0x0001cd5e 0x28a esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_abbrev 0x0001cfe8 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x0001d06e 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0001d0de 0x61 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0001d13f 0xa3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x0001d1e2 0x14e esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x0001d330 0x30c esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x0001d63c 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0001d700 0x17e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0001d87e 0x32e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0001dbac 0x46a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0001e016 0x399 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x0001e3af 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_abbrev 0x0001e444 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0001e46a 0x17a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_abbrev 0x0001e5e4 0x4b9 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0001ea9d 0x1f7 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x0001ec94 0x373 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x0001f007 0xe43 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x0001fe4a 0x4b7 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_abbrev 0x00020301 0x392 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x00020693 0x2b0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x00020943 0x1f5 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_abbrev 0x00020b38 0x3c0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x00020ef8 0x410 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_abbrev 0x00021308 0x61 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_abbrev 0x00021369 0x190 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_abbrev 0x000214f9 0x401 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x000218fa 0x57b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_abbrev 0x00021e75 0x44d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x000222c2 0x5b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_abbrev 0x0002231d 0x289 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_abbrev 0x000225a6 0x2e7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_abbrev 0x0002288d 0x424 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_abbrev 0x00022cb1 0x289 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_abbrev 0x00022f3a 0x247 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_abbrev 0x00023181 0x23a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_abbrev 0x000233bb 0x1bd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_abbrev 0x00023578 0x265 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_abbrev 0x000237dd 0x255 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_abbrev 0x00023a32 0x2de C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_abbrev 0x00023d10 0x212 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_abbrev 0x00023f22 0x174 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x00024096 0x196 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_abbrev 0x0002422c 0x1d1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_abbrev 0x000243fd 0x1e1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_abbrev 0x000245de 0x1d1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_abbrev 0x000247af 0x1ef C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_abbrev 0x0002499e 0x1d2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_abbrev 0x00024b70 0x1d7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_abbrev 0x00024d47 0x1be C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_abbrev 0x00024f05 0x2bd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_line 0x00000000 0xab655 + *(.debug_line) + .debug_line 0x00000000 0x805 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x00000805 0x62d esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_line 0x00000e32 0x148d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x000022bf 0x16c4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00003983 0x223 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00003ba6 0xd0a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000048b0 0x37b esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x00004c2b 0x997 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_line 0x000055c2 0x6dc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x00005c9e 0xda0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00006a3e 0x372 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x00006db0 0x940 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x000076f0 0x1a25 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00009115 0x59f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_line 0x000096b4 0x9f0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x0000a0a4 0x4c8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000a56c 0x105a esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0000b5c6 0x66d esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000bc33 0x720 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000c353 0xb5e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000ceb1 0x790 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_line 0x0000d641 0x608 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_line 0x0000dc49 0x234 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_line 0x0000de7d 0xb7e esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_line 0x0000e9fb 0x460 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0000ee5b 0x6be esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0000f519 0x72a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x0000fc43 0x463 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000100a6 0x460 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x00010506 0x2fb esp-idf/log/liblog.a(log_write.c.obj) + .debug_line 0x00010801 0xdf esp-idf/log/liblog.a(log_level.c.obj) + .debug_line 0x000108e0 0x45c esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_line 0x00010d3c 0x5be esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_line 0x000112fa 0x69d esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_line 0x00011997 0x39f esp-idf/log/liblog.a(log_lock.c.obj) + .debug_line 0x00011d36 0x1bb3 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x000138e9 0xffe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x000148e7 0x3b4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00014c9b 0xa56 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x000156f1 0x24a esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x0001593b 0xa6f esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_line 0x000163aa 0x2d0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_line 0x0001667a 0x329 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_line 0x000169a3 0xa5b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x000173fe 0x829 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x00017c27 0x2d8b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0001a9b2 0x4e8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x0001ae9a 0xb29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x0001b9c3 0x960 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x0001c323 0x1b06 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_line 0x0001de29 0x1e30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0001fc59 0x1584 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_line 0x000211dd 0x1c5b esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_line 0x00022e38 0x1031 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x00023e69 0x70c esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_line 0x00024575 0x32b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .debug_line 0x000248a0 0x382 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_line 0x00024c22 0x1027 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x00025c49 0x449e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x0002a0e7 0x7f2 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_line 0x0002a8d9 0x81e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_line 0x0002b0f7 0xa47 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x0002bb3e 0x645 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_line 0x0002c183 0x2d7e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_line 0x0002ef01 0x5e7 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_line 0x0002f4e8 0x3293 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_line 0x0003277b 0x7ea esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x00032f65 0x3386 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000362eb 0x5ebf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x0003c1aa 0x1136 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0003d2e0 0x531 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x0003d811 0x534 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x0003dd45 0x97f esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x0003e6c4 0x617 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0003ecdb 0x435 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x0003f110 0x60b esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x0003f71b 0x61b esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0003fd36 0xc31 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x00040967 0x29a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x00040c01 0x2a3 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_line 0x00040ea4 0x51c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x000413c0 0x77d esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x00041b3d 0x720 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x0004225d 0xea9 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x00043106 0x585 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x0004368b 0x243b esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x00045ac6 0xdca esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x00046890 0xabe esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x0004734e 0xbb6 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x00047f04 0x90f esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x00048813 0xd0c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x0004951f 0x3d0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_line 0x000498ef 0x2e6 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_line 0x00049bd5 0x55d esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x0004a132 0x344 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x0004a476 0xe86 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x0004b2fc 0x2b2d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_line 0x0004de29 0x8dd4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_line 0x00056bfd 0x5c4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_line 0x000571c1 0x1c8b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_line 0x00058e4c 0x17e4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_line 0x0005a630 0x3a9 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x0005a9d9 0x98e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_line 0x0005b367 0x580e esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x00060b75 0xcdd esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_line 0x00061852 0x9f7 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_line 0x00062249 0xf76 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x000631bf 0x40e esp-idf/main/libmain.a(Main.c.obj) + .debug_line 0x000635cd 0x28c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_line 0x00063859 0x407 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_line 0x00063c60 0x20b esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_line 0x00063e6b 0x12b esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .debug_line 0x00063f96 0x4d13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_line 0x00068ca9 0x1ca1 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_line 0x0006a94a 0x134 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x0006aa7e 0x17a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0006c220 0xa8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_line 0x0006ccad 0x10f0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x0006dd9d 0x2f13 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x00070cb0 0x29e esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x00070f4e 0x448 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_line 0x00071396 0x125b esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_line 0x000725f1 0x293 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x00072884 0x499 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x00072d1d 0x10cb esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x00073de8 0x62a esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x00074412 0x392f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x00077d41 0x13ec esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x0007912d 0xf21 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0007a04e 0x49b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0007a4e9 0x319 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0007a802 0x2360 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0007cb62 0xe5d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0007d9bf 0x3f6 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x0007ddb5 0x7aa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x0007e55f 0x96d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x0007eecc 0x7db esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0007f6a7 0x28c5 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x00081f6c 0x9d4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x00082940 0x670 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x00082fb0 0x3f4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000833a4 0x7bc esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_line 0x00083b60 0x342 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_line 0x00083ea2 0x412 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_line 0x000842b4 0x1227 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x000854db 0xbb5 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_line 0x00086090 0x964 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x000869f4 0x1cad esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000886a1 0x509 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x00088baa 0x1a23 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x0008a5cd 0x3b9 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x0008a986 0x11c3 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_line 0x0008bb49 0x6b7 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_line 0x0008c200 0x114d esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x0008d34d 0x568 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_line 0x0008d8b5 0x13b8 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_line 0x0008ec6d 0xb8 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x0008ed25 0x1b7 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x0008eedc 0xb6 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x0008ef92 0x214 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x0008f1a6 0x9db esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x0008fb81 0x783 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x00090304 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x00090524 0x77f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x00090ca3 0x8a8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x0009154b 0x1c95 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_line 0x000931e0 0xc74 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x00093e54 0x1ce esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_line 0x00094022 0x19d esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000941bf 0xb60 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_line 0x00094d1f 0x1d56 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x00096a75 0x5ee esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00097063 0x3a43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x0009aaa6 0x3f34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x0009e9da 0x1134 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_line 0x0009fb0e 0x1a7f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000a158d 0xcf9 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x000a2286 0x890 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_line 0x000a2b16 0xa77 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x000a358d 0xc48 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_line 0x000a41d5 0xb0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_line 0x000a4285 0x451 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_line 0x000a46d6 0x2979 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x000a704f 0x3e2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_line 0x000a7431 0x7b4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x000a7be5 0x3a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_line 0x000a7c1f 0x2e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_line 0x000a7f03 0x580 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_line 0x000a8483 0x856 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_line 0x000a8cd9 0x295 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_line 0x000a8f6e 0xed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_line 0x000a905b 0x8b1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line 0x000a990c 0x14b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line 0x000a9a57 0x282 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_line 0x000a9cd9 0x28d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_line 0x000a9f66 0x8c6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line 0x000aa82c 0x2c4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_line 0x000aaaf0 0x51 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x000aab41 0x8e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_line 0x000aabcf 0xb1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line 0x000aac80 0xdf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_line 0x000aad5f 0xd5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line 0x000aae34 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_line 0x000aaf1c 0xdb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_line 0x000aaff7 0xdb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_line 0x000ab0d2 0x189 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_line 0x000ab25b 0x3fa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_frame 0x00000000 0x12af4 + *(.debug_frame) + .debug_frame 0x00000000 0x78 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x00000078 0x98 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_frame 0x00000110 0x26c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000037c 0x338 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000006b4 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000007a4 0x48 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x000007ec 0xd8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_frame 0x000008c4 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000ab4 0x58 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000b0c 0x8c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x00000b98 0x68 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x00000c00 0x150 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000d50 0x80 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_frame 0x00000dd0 0x50 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00000e20 0x5c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000e7c 0x1a4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00001020 0xa8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x000010c8 0x120 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x000011e8 0x194 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x0000137c 0x8c esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_frame 0x00001408 0xd8 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_frame 0x000014e0 0x4c esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_frame 0x0000152c 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_frame 0x00001568 0x80 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000015e8 0xc8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000016b0 0x6c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x0000171c 0x50 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x0000176c 0x50 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x000017bc 0x78 esp-idf/log/liblog.a(log_write.c.obj) + .debug_frame 0x00001834 0x20 esp-idf/log/liblog.a(log_level.c.obj) + .debug_frame 0x00001854 0xb0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_frame 0x00001904 0xd4 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_frame 0x000019d8 0xd8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_frame 0x00001ab0 0x6c esp-idf/log/liblog.a(log_lock.c.obj) + .debug_frame 0x00001b1c 0x4f4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00002010 0x120 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00002130 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00002200 0xc0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x000022c0 0xe8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_frame 0x000023a8 0x3c esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_frame 0x000023e4 0x78 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_frame 0x0000245c 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00002530 0x124 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x00002654 0x3b8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x00002a0c 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x00002a7c 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00002b48 0x190 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x00002cd8 0x2c8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_frame 0x00002fa0 0x3bc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000335c 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_frame 0x0000349c 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_frame 0x00003748 0x13c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00003884 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_frame 0x00003904 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_frame 0x00003958 0x25c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00003bb4 0x740 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x000042f4 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_frame 0x00004370 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_frame 0x000044a0 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x000045e8 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_frame 0x00004660 0x710 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_frame 0x00004d70 0x104 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_frame 0x00004e74 0xa98 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_frame 0x0000590c 0x54 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x00005960 0x61c esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00005f7c 0xaa4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00006a20 0x220 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00006c40 0xe0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x00006d20 0x70 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00006d90 0xa0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x00006e30 0x60 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00006e90 0x2c esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x00006ebc 0x78 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x00006f34 0x1c8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x000070fc 0x314 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x00007410 0x50 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x00007460 0x40 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_frame 0x000074a0 0x54 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x000074f4 0xe0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x000075d4 0x130 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00007704 0x1f0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x000078f4 0x100 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x000079f4 0x52c esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x00007f20 0x1f8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x00008118 0x138 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x00008250 0x194 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x000083e4 0x110 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x000084f4 0x100 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x000085f4 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_frame 0x00008624 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_frame 0x0000867c 0x64 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x000086e0 0x74 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00008754 0x194 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x000088e8 0x478 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_frame 0x00008d60 0xaa0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_frame 0x00009800 0x6c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_frame 0x0000986c 0x414 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_frame 0x00009c80 0x174 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_frame 0x00009df4 0xd4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x00009ec8 0x228 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_frame 0x0000a0f0 0xb68 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x0000ac58 0x20c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_frame 0x0000ae64 0x218 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_frame 0x0000b07c 0x124 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x0000b1a0 0x28 esp-idf/main/libmain.a(Main.c.obj) + .debug_frame 0x0000b1c8 0x30 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_frame 0x0000b1f8 0xac esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_frame 0x0000b2a4 0x7a0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_frame 0x0000ba44 0x344 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_frame 0x0000bd88 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000bdb4 0x280 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000c034 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_frame 0x0000c164 0xe0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x0000c244 0x350 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x0000c594 0x48 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_frame 0x0000c5dc 0x148 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_frame 0x0000c724 0x40 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x0000c764 0x138 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000c89c 0x1d8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000ca74 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000cb3c 0x510 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000d04c 0x168 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000d1b4 0x2ac esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000d460 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000d4ec 0x478 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000d964 0x16c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000dad0 0x7c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000db4c 0x110 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000dc5c 0x180 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x0000dddc 0x6c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x0000de48 0x388 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000e1d0 0x118 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x0000e2e8 0x3c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x0000e324 0x4c esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000e370 0xd4 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_frame 0x0000e444 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_frame 0x0000e474 0x60 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_frame 0x0000e4d4 0x1d4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x0000e6a8 0x1d8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_frame 0x0000e880 0xc4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x0000e944 0x28c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000ebd0 0x9c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000ec6c 0x1fc esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x0000ee68 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x0000eea8 0x148 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_frame 0x0000eff0 0x90 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_frame 0x0000f080 0x168 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000f1e8 0xb0 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_frame 0x0000f298 0x260 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_frame 0x0000f4f8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x0000f538 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x0000f578 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x0000f5ec 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x0000f658 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x0000f69c 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x0000f770 0x34c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_frame 0x0000fabc 0x15c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x0000fc18 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_frame 0x0000fc48 0x5e8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_frame 0x00010230 0x404 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x00010634 0x110 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x00010744 0x690 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x00010dd4 0x51c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x000112f0 0x1f0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_frame 0x000114e0 0x290 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x00011770 0x1ac esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x0001191c 0xbc esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_frame 0x000119d8 0xf0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x00011ac8 0x1e0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_frame 0x00011ca8 0x54 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_frame 0x00011cfc 0x444 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x00012140 0x280 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x000123c0 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_frame 0x00012418 0x84 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_frame 0x0001249c 0x17c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_frame 0x00012618 0x60 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_frame 0x00012678 0x44 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_frame 0x000126bc 0x60 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_frame 0x0001271c 0x50 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_frame 0x0001276c 0x54 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_frame 0x000127c0 0xa4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_frame 0x00012864 0x78 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_frame 0x000128dc 0x4c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_frame 0x00012928 0x2c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_frame 0x00012954 0x2c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_frame 0x00012980 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_frame 0x000129b0 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_frame 0x000129e0 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_frame 0x00012a14 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_frame 0x00012a48 0x34 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_frame 0x00012a7c 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_frame 0x00012a9c 0x58 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_str 0x00000000 0x3e4b5 + *(.debug_str) + .debug_str 0x00000000 0x3e4b5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x4cc (size before relaxing) + .debug_str 0x0003e4b5 0x4d7 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_str 0x0003e4b5 0x98c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0003e4b5 0xaa2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0003e4b5 0x2815 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0003e4b5 0x7cb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0003e4b5 0x2b6 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_str 0x0003e4b5 0x1c2b esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_str 0x0003e4b5 0x6ef esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_str 0x0003e4b5 0x3bc1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_str 0x0003e4b5 0x300 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_str 0x0003e4b5 0x2fdb esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_str 0x0003e4b5 0x9729 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_str 0x0003e4b5 0x807 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_str 0x0003e4b5 0x3a7f esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_str 0x0003e4b5 0xc75 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_str 0x0003e4b5 0x373b esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_str 0x0003e4b5 0x4b7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_str 0x0003e4b5 0x1a4f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_str 0x0003e4b5 0x63d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_str 0x0003e4b5 0x2947 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_str 0x0003e4b5 0x5d4 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_str 0x0003e4b5 0x368 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_str 0x0003e4b5 0x2bae esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_str 0x0003e4b5 0x2938 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0003e4b5 0x2af0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0003e4b5 0xf6f esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_str 0x0003e4b5 0x6f9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_str 0x0003e4b5 0x371 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_str 0x0003e4b5 0x372 esp-idf/log/liblog.a(log_write.c.obj) + .debug_str 0x0003e4b5 0x2b4 esp-idf/log/liblog.a(log_level.c.obj) + .debug_str 0x0003e4b5 0x461 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_str 0x0003e4b5 0x3ee esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_str 0x0003e4b5 0x3fc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_str 0x0003e4b5 0x319 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_str 0x0003e4b5 0xb2a esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_str 0x0003e4b5 0x774 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_str 0x0003e4b5 0x43a esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_str 0x0003e4b5 0x7b6 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_str 0x0003e4b5 0x42e esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_str 0x0003e4b5 0x5b8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_str 0x0003e4b5 0x2ff esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_str 0x0003e4b5 0x35e esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_str 0x0003e4b5 0x511 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_str 0x0003e4b5 0x4f8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_str 0x0003e4b5 0x1812 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_str 0x0003e4b5 0xd42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_str 0x0003e4b5 0x2365 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_str 0x0003e4b5 0x532 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_str 0x0003e4b5 0x30d1 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_str 0x0003e4b5 0x3fb0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x0003e4b5 0x2660 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_str 0x0003e4b5 0x4e5d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_str 0x0003e4b5 0x3132 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x0003e4b5 0x2cbb esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_str 0x0003e4b5 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .debug_str 0x0003e4b5 0x377 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_str 0x0003e4b5 0x871 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_str 0x0003e4b5 0x8cc1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_str 0x0003e4b5 0x2430 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_str 0x0003e4b5 0x3371 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_str 0x0003e4b5 0x2272 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_str 0x0003e4b5 0xd84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_str 0x0003e4b5 0x1bc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_str 0x0003e4b5 0x245a esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_str 0x0003e4b5 0x164a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_str 0x0003e4b5 0x4c3 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_str 0x0003e4b5 0xe2b esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_str 0x0003e4b5 0x1d6d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_str 0x0003e4b5 0x1772 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_str 0x0003e4b5 0x366 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_str 0x0003e4b5 0x800 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_str 0x0003e4b5 0x3321 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_str 0x0003e4b5 0x36f esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_str 0x0003e4b5 0x29b esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_str 0x0003e4b5 0x334 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_str 0x0003e4b5 0x7c0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_str 0x0003e4b5 0x8f1 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_str 0x0003e4b5 0x2ea esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_str 0x0003e4b5 0x26c esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_str 0x0003e4b5 0x669 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_str 0x0003e4b5 0xcb8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_str 0x0003e4b5 0x8ab esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_str 0x0003e4b5 0xaf9 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_str 0x0003e4b5 0x990 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_str 0x0003e4b5 0xe2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_str 0x0003e4b5 0x886 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x0003e4b5 0x537 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_str 0x0003e4b5 0x5b7 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_str 0x0003e4b5 0x432 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_str 0x0003e4b5 0xb72 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_str 0x0003e4b5 0x4a8 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_str 0x0003e4b5 0x311 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_str 0x0003e4b5 0x3e9 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_str 0x0003e4b5 0x33d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x0003e4b5 0x34ff esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_str 0x0003e4b5 0x25d1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_str 0x0003e4b5 0x6018 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_str 0x0003e4b5 0x145f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_str 0x0003e4b5 0x275e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_str 0x0003e4b5 0x3cc3 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_str 0x0003e4b5 0x3c6 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_str 0x0003e4b5 0x1189 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_str 0x0003e4b5 0x1bf1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_str 0x0003e4b5 0x10c8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_str 0x0003e4b5 0xa88 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_str 0x0003e4b5 0x98b esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_str 0x0003e4b5 0x3bb esp-idf/main/libmain.a(Main.c.obj) + .debug_str 0x0003e4b5 0x2aa esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_str 0x0003e4b5 0x33d esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_str 0x0003e4b5 0xb6 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_str 0x0003e4b5 0xa7 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .debug_str 0x0003e4b5 0x44bf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_str 0x0003e4b5 0x3174 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_str 0x0003e4b5 0x27f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x0003e4b5 0x3f86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0003e4b5 0x14bc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_str 0x0003e4b5 0xa5e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x0003e4b5 0x103b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_str 0x0003e4b5 0x371 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_str 0x0003e4b5 0x2b4 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_str 0x0003e4b5 0x61c esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_str 0x0003e4b5 0x366 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_str 0x0003e4b5 0x4de esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_str 0x0003e4b5 0xbae esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_str 0x0003e4b5 0xf62 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_str 0x0003e4b5 0x2851 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_str 0x0003e4b5 0x4635 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_str 0x0003e4b5 0xc5e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0003e4b5 0x78a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0003e4b5 0x90b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0003e4b5 0x1ccb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0003e4b5 0x4547 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_str 0x0003e4b5 0x30f esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_str 0x0003e4b5 0xd0e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_str 0x0003e4b5 0x4d2 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_str 0x0003e4b5 0x37ba esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_str 0x0003e4b5 0xc77 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_str 0x0003e4b5 0x3819 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_str 0x0003e4b5 0x432 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_str 0x0003e4b5 0x536 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_str 0x0003e4b5 0x9b0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_str 0x0003e4b5 0x7f3 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_str 0x0003e4b5 0x5b8 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_str 0x0003e4b5 0x2bac esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x0003e4b5 0x724 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_str 0x0003e4b5 0x40db esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_str 0x0003e4b5 0x5727 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0003e4b5 0x4fa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0003e4b5 0x379a esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_str 0x0003e4b5 0x980 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x0003e4b5 0x1c06 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_str 0x0003e4b5 0xb15 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_str 0x0003e4b5 0x38d0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_str 0x0003e4b5 0x1ce3 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_str 0x0003e4b5 0x1207 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_str 0x0003e4b5 0xa36 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_str 0x0003e4b5 0x244 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x0003e4b5 0x221 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_str 0x0003e4b5 0x277 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_str 0x0003e4b5 0x396 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x0003e4b5 0x7d3 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x0003e4b5 0x2e3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_str 0x0003e4b5 0xa6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_str 0x0003e4b5 0xafc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_str 0x0003e4b5 0x1366 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_str 0x0003e4b5 0x2b2c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x0003e4b5 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_str 0x0003e4b5 0xc7 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_str 0x0003e4b5 0x620 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_str 0x0003e4b5 0xdcc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_str 0x0003e4b5 0x4c1 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_str 0x0003e4b5 0xe5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_str 0x0003e4b5 0x5d16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_str 0x0003e4b5 0x42fb esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_str 0x0003e4b5 0x137b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_str 0x0003e4b5 0x102e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_str 0x0003e4b5 0x86b esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_str 0x0003e4b5 0x2b3d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_str 0x0003e4b5 0x191b esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_str 0x0003e4b5 0x222 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_str 0x0003e4b5 0x30c esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_str 0x0003e4b5 0x1978 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_str 0x0003e4b5 0xccf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_str 0x0003e4b5 0x102a esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_str 0x0003e4b5 0x96 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_str 0x0003e4b5 0x5a5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_str 0x0003e4b5 0x59a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_str 0x0003e4b5 0x753 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_str 0x0003e4b5 0x5cc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_str 0x0003e4b5 0x501 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_str 0x0003e4b5 0x586 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_str 0x0003e4b5 0x4e1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_str 0x0003e4b5 0x5a1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_str 0x0003e4b5 0x548 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_str 0x0003e4b5 0x706 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_str 0x0003e4b5 0x503 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_str 0x0003e4b5 0x4e3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x0003e4b5 0x4dd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_str 0x0003e4b5 0x4e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_str 0x0003e4b5 0x62f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_str 0x0003e4b5 0x54d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_str 0x0003e4b5 0x516 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_str 0x0003e4b5 0x4e9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_str 0x0003e4b5 0x4eb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_str 0x0003e4b5 0x4dd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_str 0x0003e4b5 0x55c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_loc 0x00000000 0x60b1a + *(.debug_loc) + .debug_loc 0x00000000 0x115 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x00000115 0x7c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_loc 0x00000191 0xb7b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000d0c 0x12a0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00001fac 0x343 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000022ef 0x118 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x00002407 0x3c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_loc 0x00002443 0x726 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x00002b69 0x168 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00002cd1 0x27 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x00002cf8 0x6d esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_loc 0x00002d65 0x1345 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x000040aa 0x237 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_loc 0x000042e1 0x3d esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x0000431e 0xa0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x000043be 0x3e1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x0000479f 0x81 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x00004820 0x221 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x00004a41 0x579 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00004fba 0x1bb esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_loc 0x00005175 0x597 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_loc 0x0000570c 0xc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_loc 0x000057ce 0x6ff esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_loc 0x00005ecd 0x39 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00005f06 0x1b8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x000060be 0x349 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x00006407 0x111 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00006518 0x13 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_loc 0x0000652b 0x195 esp-idf/log/liblog.a(log_write.c.obj) + .debug_loc 0x000066c0 0x1d0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_loc 0x00006890 0x282 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_loc 0x00006b12 0x370 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_loc 0x00006e82 0x159c esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000841e 0x835 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x00008c53 0x19e esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x00008df1 0x3dd esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x000091ce 0x63e esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_loc 0x0000980c 0x6d esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_loc 0x00009879 0x774 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x00009fed 0x129 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x0000a116 0x1830 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0000b946 0x1a4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x0000baea 0x201 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x0000bceb 0x3c0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0000c0ab 0xd1c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_loc 0x0000cdc7 0xf6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x0000dd33 0x163e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_loc 0x0000f371 0x1394 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_loc 0x00010705 0x65a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00010d5f 0x25d esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_loc 0x00010fbc 0x13d esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_loc 0x000110f9 0x10b4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x000121ad 0x1a67 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x00013c14 0x139 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_loc 0x00013d4d 0x2c4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_loc 0x00014011 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x00014075 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_loc 0x00014115 0x21b5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_loc 0x000162ca 0xe6 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_loc 0x000163b0 0x55e8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_loc 0x0001b998 0x72 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x0001ba0a 0x2d8a esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0001e794 0x3e6e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x00022602 0x61a esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x00022c1c 0x1d8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x00022df4 0x1e6 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x00022fda 0x2bd esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x00023297 0x63 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000232fa 0x74 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x0002336e 0x31d esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x0002368b 0x505 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x00023b90 0x5f2 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x00024182 0x75 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x000241f7 0xdd esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_loc 0x000242d4 0x132 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x00024406 0xaa esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_loc 0x000244b0 0x46a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x0002491a 0x73d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x00025057 0xd0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x00025127 0x15ba esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x000266e1 0x6a7 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x00026d88 0x4f3 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0002727b 0x53a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x000277b5 0x491 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x00027c46 0x3dd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x00028023 0x1e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x00028041 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00028069 0x367 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x000283d0 0x1416 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_loc 0x000297e6 0x4eb5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_loc 0x0002e69b 0x3d esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_loc 0x0002e6d8 0xfa7 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_loc 0x0002f67f 0x67d esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_loc 0x0002fcfc 0xd2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_loc 0x0002fdce 0x5aa esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_loc 0x00030378 0x4de4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x0003515c 0x8ab esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_loc 0x00035a07 0x3ca esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_loc 0x00035dd1 0x58d esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x0003635e 0x1e esp-idf/main/libmain.a(Main.c.obj) + .debug_loc 0x0003637c 0x8c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_loc 0x00036408 0x1fb esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_loc 0x00036603 0x2806 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_loc 0x00038e09 0x9e6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_loc 0x000397ef 0x1110 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0003a8ff 0x2ee esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_loc 0x0003abed 0x29f esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x0003ae8c 0x238c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x0003d218 0x15e esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_loc 0x0003d376 0x1124 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_loc 0x0003e49a 0xc3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0003e55d 0xda4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x0003f301 0xbf esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x0003f3c0 0x1d63 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x00041123 0x7ce esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x000418f1 0x8ae esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0004219f 0x164 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x00042303 0x17fe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x00043b01 0x8b7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x000443b8 0x394 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0004474c 0x237 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x00044983 0x45e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x00044de1 0xb5 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x00044e96 0xeb3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x00045d49 0x55e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x000462a7 0x45 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x000462ec 0x178 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x00046464 0x750 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_loc 0x00046bb4 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_loc 0x00046c17 0x1b4 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_loc 0x00046dcb 0x158d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00048358 0xd3f esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_loc 0x00049097 0x3bc esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x00049453 0x1583 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0004a9d6 0x20c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0004abe2 0xd48 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x0004b92a 0x1d7 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x0004bb01 0x125a esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_loc 0x0004cd5b 0x38d esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_loc 0x0004d0e8 0xc0e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x0004dcf6 0x302 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_loc 0x0004dff8 0x7b2 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_loc 0x0004e7aa 0x107 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x0004e8b1 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x0004e913 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x0004ea33 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x0004eac3 0x41c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x0004eedf 0x384 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0004f263 0x1651 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_loc 0x000508b4 0x36e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x00050c22 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_loc 0x00050c72 0x1650 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_loc 0x000522c2 0x1007 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x000532c9 0x337 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x00053600 0x42b7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x000578b7 0x391a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x0005b1d1 0x821 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_loc 0x0005b9f2 0x119d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x0005cb8f 0xeb7 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x0005da46 0x5bc esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_loc 0x0005e002 0x535 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x0005e537 0x989 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_loc 0x0005eec0 0x11a esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_loc 0x0005efda 0x14da esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x000604b4 0x666 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x8630 + *(.debug_ranges) + .debug_ranges 0x00000000 0x88 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x00000088 0x60 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_ranges 0x000000e8 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000190 0x188 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000318 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x000003c8 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x00000400 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_ranges 0x00000440 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x000004e8 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000518 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000548 0x38 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x00000580 0xa8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000628 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_ranges 0x00000658 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x00000688 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x000006b0 0xa8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x00000758 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x00000788 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x000007d0 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000870 0x58 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .debug_ranges 0x000008c8 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .debug_ranges 0x00000900 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .debug_ranges 0x00000918 0x60 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_ranges 0x00000978 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x000009b0 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000a28 0xa8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x00000ad0 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x00000ae8 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x00000b00 0x20 esp-idf/log/liblog.a(log_write.c.obj) + .debug_ranges 0x00000b20 0x10 esp-idf/log/liblog.a(log_level.c.obj) + .debug_ranges 0x00000b30 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_ranges 0x00000b60 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_ranges 0x00000b90 0x58 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_ranges 0x00000be8 0x20 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_ranges 0x00000c08 0x268 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000e70 0x108 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00000f78 0x38 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x00000fb0 0x70 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x00001020 0xe8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_ranges 0x00001108 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_ranges 0x00001120 0x28 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .debug_ranges 0x00001148 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x00001210 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x00001280 0x210 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00001490 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x000014b8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x00001520 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00001578 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .debug_ranges 0x00001670 0x280 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x000018f0 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .debug_ranges 0x00001988 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .debug_ranges 0x00001a58 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00001b18 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .debug_ranges 0x00001b38 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00001b50 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x00001bf8 0x428 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x00002020 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_ranges 0x00002058 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_ranges 0x000020a8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x00002108 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .debug_ranges 0x00002140 0x400 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .debug_ranges 0x00002540 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .debug_ranges 0x00002588 0x3c0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .debug_ranges 0x00002948 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x00002978 0x2d8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x00002c50 0x6f0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x00003340 0xe8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00003428 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x00003468 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00003480 0x90 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00003510 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00003540 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x00003568 0x60 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x000035c8 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x00003658 0x110 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x00003768 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x00003790 0x18 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_ranges 0x000037a8 0x78 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x00003820 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x00003860 0x68 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x000038c8 0xa0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x00003968 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x000039a8 0x1c8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00003b70 0x90 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x00003c00 0x90 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x00003c90 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x00003ce8 0x60 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00003d48 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00003dd0 0x18 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_ranges 0x00003de8 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_ranges 0x00003e08 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x00003e28 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00003e50 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00003ee0 0x2d0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_ranges 0x000041b0 0x510 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_ranges 0x000046c0 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_ranges 0x000046e8 0x1a8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_ranges 0x00004890 0xa0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_ranges 0x00004930 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x00004970 0x98 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_ranges 0x00004a08 0x598 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00004fa0 0x90 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_ranges 0x00005030 0xa0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_ranges 0x000050d0 0x60 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x00005130 0x10 esp-idf/main/libmain.a(Main.c.obj) + .debug_ranges 0x00005140 0x10 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_ranges 0x00005150 0x48 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_ranges 0x00005198 0x298 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_ranges 0x00005430 0xc8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_ranges 0x000054f8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00005508 0x198 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x000056a0 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_ranges 0x000056f8 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00005770 0x260 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x000059d0 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_ranges 0x000059e0 0x78 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .debug_ranges 0x00005a58 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00005a78 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00005ad8 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00005bd8 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00005c38 0x1f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x00005e30 0xd8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00005f08 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00005fc0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00005ff0 0x180 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00006170 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x000061d8 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x000061f8 0x60 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x00006258 0xa0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x000062f8 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00006318 0x190 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x000064a8 0xa0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x00006548 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00006558 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00006570 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_ranges 0x000065a0 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .debug_ranges 0x000065b8 0x28 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_ranges 0x000065e0 0x190 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00006770 0xd8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_ranges 0x00006848 0x58 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x000068a0 0x288 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00006b28 0x40 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00006b68 0x198 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x00006d00 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x00006d30 0x2b0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .debug_ranges 0x00006fe0 0x40 esp-idf/hal/libhal.a(pau_hal.c.obj) + .debug_ranges 0x00007020 0xf0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x00007110 0x58 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .debug_ranges 0x00007168 0x110 esp-idf/hal/libhal.a(apm_hal.c.obj) + .debug_ranges 0x00007278 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00007298 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x000072e0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x00007330 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00007350 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x00007368 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x000073b8 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_ranges 0x000074f8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00007558 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_ranges 0x00007570 0x130 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_ranges 0x000076a0 0x1e8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x00007888 0x78 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00007900 0x1b8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x00007ab8 0x480 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x00007f38 0xb8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_ranges 0x00007ff0 0x110 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x00008100 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x00008180 0x60 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_ranges 0x000081e0 0xf8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x000082d8 0x100 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_ranges 0x000083d8 0x18 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .debug_ranges 0x000083f0 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00008558 0xd8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + 0x00000000 0x1013 + *(.debug_line_str) + .debug_line_str + 0x00000000 0x1013 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + 0x5d5 (size before relaxing) + .debug_line_str + 0x00001013 0x1b6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .debug_line_str + 0x00001013 0x2e9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_line_str + 0x00001013 0x2e9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_line_str + 0x00001013 0x2f2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_line_str + 0x00001013 0x2e5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_line_str + 0x00001013 0x2d5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_line_str + 0x00001013 0x2f7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line_str + 0x00001013 0x2d5 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line_str + 0x00001013 0x2ed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_line_str + 0x00001013 0x2dd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_line_str + 0x00001013 0x385 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line_str + 0x00001013 0x2d6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_line_str + 0x00001013 0x27b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x00001013 0x289 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .debug_line_str + 0x00001013 0x2ed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line_str + 0x00001013 0x36f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_line_str + 0x00001013 0x35e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line_str + 0x00001013 0x2fb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_line_str + 0x00001013 0x2ea C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_line_str + 0x00001013 0x2ed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_line_str + 0x00001013 0x281 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_line_str + 0x00001013 0x2e9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_loclists + 0x00000000 0x12c6 + *(.debug_loclists) + .debug_loclists + 0x00000000 0x12c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_loclists + 0x0000012c 0x7f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_loclists + 0x000001ab 0x16a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_loclists + 0x00000315 0x280 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_loclists + 0x00000595 0xd2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_loclists + 0x00000667 0xf4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_loclists + 0x0000075b 0x2e6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_loclists + 0x00000a41 0x8c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_loclists + 0x00000acd 0x95 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_loclists + 0x00000b62 0x211 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_loclists + 0x00000d73 0x200 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_loclists + 0x00000f73 0x69 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_loclists + 0x00000fdc 0x1e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_loclists + 0x00000ffa 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .debug_loclists + 0x00001036 0x3c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_loclists + 0x00001072 0x3e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .debug_loclists + 0x000010b0 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .debug_loclists + 0x0000110a 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .debug_loclists + 0x00001164 0x85 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .debug_loclists + 0x000011e9 0xdd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + 0x00000000 0x1c7 + *(.debug_rnglists) + .debug_rnglists + 0x00000000 0x9d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_rnglists + 0x0000009d 0x21 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_rnglists + 0x000000be 0x57 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_rnglists + 0x00000115 0x19 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_rnglists + 0x0000012e 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_rnglists + 0x0000015e 0x13 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .debug_rnglists + 0x00000171 0x1e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_rnglists + 0x0000018f 0x1e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .debug_rnglists + 0x000001ad 0x1a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x60 + *(.comment) + .comment 0x00000000 0x60 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_level.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(init.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .comment 0x00000060 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .comment 0x00000060 0x30 esp-idf/main/libmain.a(Main.c.obj) + .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(pau_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(apm_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) + .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x00000060 0x30 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + .comment 0x00000060 0x32 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x00000060 0x30 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .comment 0x00000060 0x30 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .comment 0x00000060 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .comment 0x00000060 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.note.GNU-stack + 0x00000000 0x0 + *(.note.GNU-stack) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/main/libmain.a(Main.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .note.GNU-stack + 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +.riscv.attributes + 0x00000000 0x6a + *(.riscv.attributes) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .riscv.attributes + 0x0000005c 0x5c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .riscv.attributes + 0x000000b8 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .riscv.attributes + 0x00000114 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x00000170 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .riscv.attributes + 0x000001cc 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x00000228 0x5c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .riscv.attributes + 0x00000284 0x5c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .riscv.attributes + 0x000002e0 0x5c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .riscv.attributes + 0x0000033c 0x60 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .riscv.attributes + 0x0000039c 0x5c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .riscv.attributes + 0x000003f8 0x5c esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .riscv.attributes + 0x00000454 0x60 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .riscv.attributes + 0x000004b4 0x5c esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .riscv.attributes + 0x00000510 0x60 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .riscv.attributes + 0x00000570 0x5c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .riscv.attributes + 0x000005cc 0x5c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .riscv.attributes + 0x00000628 0x5c esp-idf/esp_system/libesp_system.a(startup.c.obj) + .riscv.attributes + 0x00000684 0x5c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .riscv.attributes + 0x000006e0 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .riscv.attributes + 0x00000740 0x5c esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + .riscv.attributes + 0x0000079c 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + .riscv.attributes + 0x000007f8 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + .riscv.attributes + 0x00000854 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .riscv.attributes + 0x000008b0 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .riscv.attributes + 0x0000090c 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .riscv.attributes + 0x00000968 0x5c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .riscv.attributes + 0x000009c4 0x5c esp-idf/hal/libhal.a(brownout_hal.c.obj) + .riscv.attributes + 0x00000a20 0x60 esp-idf/log/liblog.a(log_timestamp.c.obj) + .riscv.attributes + 0x00000a80 0x5c esp-idf/log/liblog.a(log_write.c.obj) + .riscv.attributes + 0x00000adc 0x5c esp-idf/log/liblog.a(log_level.c.obj) + .riscv.attributes + 0x00000b38 0x5c esp-idf/log/liblog.a(tag_log_level.c.obj) + .riscv.attributes + 0x00000b94 0x5c esp-idf/log/liblog.a(log_linked_list.c.obj) + .riscv.attributes + 0x00000bf0 0x5c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .riscv.attributes + 0x00000c4c 0x5c esp-idf/log/liblog.a(log_lock.c.obj) + .riscv.attributes + 0x00000ca8 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) + .riscv.attributes + 0x00000d04 0x5c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .riscv.attributes + 0x00000d60 0x5c esp-idf/heap/libheap.a(multi_heap.c.obj) + .riscv.attributes + 0x00000dbc 0x5c esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .riscv.attributes + 0x00000e18 0x5c esp-idf/heap/libheap.a(memory_layout.c.obj) + .riscv.attributes + 0x00000e74 0x5c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .riscv.attributes + 0x00000ed0 0x5c esp-idf/esp_security/libesp_security.a(init.c.obj) + .riscv.attributes + 0x00000f2c 0x5c esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + .riscv.attributes + 0x00000f88 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .riscv.attributes + 0x00000fe8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .riscv.attributes + 0x00001044 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .riscv.attributes + 0x000010a4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .riscv.attributes + 0x00001100 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .riscv.attributes + 0x0000115c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .riscv.attributes + 0x000011b8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + .riscv.attributes + 0x00001214 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .riscv.attributes + 0x00001270 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + .riscv.attributes + 0x000012cc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + .riscv.attributes + 0x00001328 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .riscv.attributes + 0x00001384 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + .riscv.attributes + 0x000013e0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + .riscv.attributes + 0x00001448 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .riscv.attributes + 0x000014a4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .riscv.attributes + 0x00001500 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .riscv.attributes + 0x00001560 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .riscv.attributes + 0x000015bc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .riscv.attributes + 0x00001618 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .riscv.attributes + 0x00001674 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + .riscv.attributes + 0x000016d0 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + .riscv.attributes + 0x0000172c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + .riscv.attributes + 0x00001788 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + .riscv.attributes + 0x000017e4 0x5c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .riscv.attributes + 0x00001840 0x5c esp-idf/freertos/libfreertos.a(queue.c.obj) + .riscv.attributes + 0x0000189c 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .riscv.attributes + 0x000018f8 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) + .riscv.attributes + 0x00001958 0x5c esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .riscv.attributes + 0x000019b4 0x5c esp-idf/freertos/libfreertos.a(port_common.c.obj) + .riscv.attributes + 0x00001a10 0x5c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .riscv.attributes + 0x00001a6c 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) + .riscv.attributes + 0x00001ac8 0x5c esp-idf/newlib/libnewlib.a(abort.c.obj) + .riscv.attributes + 0x00001b24 0x5c esp-idf/newlib/libnewlib.a(assert.c.obj) + .riscv.attributes + 0x00001b80 0x5c esp-idf/newlib/libnewlib.a(heap.c.obj) + .riscv.attributes + 0x00001bdc 0x5c esp-idf/newlib/libnewlib.a(locks.c.obj) + .riscv.attributes + 0x00001c38 0x5c esp-idf/newlib/libnewlib.a(pthread.c.obj) + .riscv.attributes + 0x00001c94 0x5c esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .riscv.attributes + 0x00001cf0 0x5c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .riscv.attributes + 0x00001d4c 0x5c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .riscv.attributes + 0x00001da8 0x5c esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .riscv.attributes + 0x00001e04 0x5c esp-idf/newlib/libnewlib.a(time.c.obj) + .riscv.attributes + 0x00001e60 0x5c esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .riscv.attributes + 0x00001ebc 0x5c esp-idf/pthread/libpthread.a(pthread.c.obj) + .riscv.attributes + 0x00001f18 0x5c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .riscv.attributes + 0x00001f74 0x5c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .riscv.attributes + 0x00001fd0 0x5c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .riscv.attributes + 0x0000202c 0x5c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .riscv.attributes + 0x00002088 0x5c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .riscv.attributes + 0x000020e4 0x5c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .riscv.attributes + 0x00002140 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .riscv.attributes + 0x0000219c 0x5c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .riscv.attributes + 0x000021f8 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .riscv.attributes + 0x00002254 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .riscv.attributes + 0x000022b0 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .riscv.attributes + 0x0000230c 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .riscv.attributes + 0x00002368 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .riscv.attributes + 0x000023c4 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .riscv.attributes + 0x00002420 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .riscv.attributes + 0x0000247c 0x5c esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .riscv.attributes + 0x000024d8 0x5c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .riscv.attributes + 0x00002534 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .riscv.attributes + 0x00002590 0x5c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .riscv.attributes + 0x000025ec 0x5c esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .riscv.attributes + 0x00002648 0x5c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .riscv.attributes + 0x000026a4 0x5c esp-idf/main/libmain.a(Main.c.obj) + .riscv.attributes + 0x00002700 0x5c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .riscv.attributes + 0x0000275c 0x5c esp-idf/riscv/libriscv.a(interrupt.c.obj) + .riscv.attributes + 0x000027b8 0x68 esp-idf/riscv/libriscv.a(vectors.S.obj) + .riscv.attributes + 0x00002820 0x64 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + .riscv.attributes + 0x00002884 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .riscv.attributes + 0x000028e0 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .riscv.attributes + 0x0000293c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .riscv.attributes + 0x00002998 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .riscv.attributes + 0x000029f4 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .riscv.attributes + 0x00002a50 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .riscv.attributes + 0x00002aac 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .riscv.attributes + 0x00002b08 0x5c esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .riscv.attributes + 0x00002b64 0x5c esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .riscv.attributes + 0x00002bc0 0x5c esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + .riscv.attributes + 0x00002c1c 0x5c esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .riscv.attributes + 0x00002c78 0x5c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .riscv.attributes + 0x00002cd4 0x5c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .riscv.attributes + 0x00002d30 0x5c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .riscv.attributes + 0x00002d8c 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .riscv.attributes + 0x00002de8 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .riscv.attributes + 0x00002e44 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .riscv.attributes + 0x00002ea0 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .riscv.attributes + 0x00002efc 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .riscv.attributes + 0x00002f58 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .riscv.attributes + 0x00002fb4 0x5c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .riscv.attributes + 0x00003010 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .riscv.attributes + 0x0000306c 0x5c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .riscv.attributes + 0x000030c8 0x5c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .riscv.attributes + 0x00003124 0x5c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .riscv.attributes + 0x00003180 0x5c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .riscv.attributes + 0x000031dc 0x5c esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .riscv.attributes + 0x00003238 0x5c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .riscv.attributes + 0x00003294 0x5c esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .riscv.attributes + 0x000032f0 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .riscv.attributes + 0x0000334c 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + .riscv.attributes + 0x000033a8 0x5c esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .riscv.attributes + 0x00003404 0x5c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .riscv.attributes + 0x00003460 0x5c esp-idf/hal/libhal.a(cache_hal.c.obj) + .riscv.attributes + 0x000034bc 0x5c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .riscv.attributes + 0x00003518 0x5c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .riscv.attributes + 0x00003574 0x5c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .riscv.attributes + 0x000035d0 0x5c esp-idf/hal/libhal.a(uart_hal.c.obj) + .riscv.attributes + 0x0000362c 0x5c esp-idf/hal/libhal.a(gpio_hal.c.obj) + .riscv.attributes + 0x00003688 0x5c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + .riscv.attributes + 0x000036e4 0x5c esp-idf/hal/libhal.a(pau_hal.c.obj) + .riscv.attributes + 0x00003740 0x5c esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .riscv.attributes + 0x0000379c 0x5c esp-idf/hal/libhal.a(pmu_hal.c.obj) + .riscv.attributes + 0x000037f8 0x5c esp-idf/hal/libhal.a(apm_hal.c.obj) + .riscv.attributes + 0x00003854 0x5c esp-idf/soc/libsoc.a(interrupts.c.obj) + .riscv.attributes + 0x000038b0 0x5c esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .riscv.attributes + 0x0000390c 0x5c esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .riscv.attributes + 0x00003968 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .riscv.attributes + 0x000039c4 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .riscv.attributes + 0x00003a24 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .riscv.attributes + 0x00003a84 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .riscv.attributes + 0x00003ae0 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .riscv.attributes + 0x00003b3c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .riscv.attributes + 0x00003b98 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .riscv.attributes + 0x00003bf4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .riscv.attributes + 0x00003c50 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .riscv.attributes + 0x00003cac 0x64 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .riscv.attributes + 0x00003d10 0x5c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .riscv.attributes + 0x00003d6c 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .riscv.attributes + 0x00003dc8 0x5c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .riscv.attributes + 0x00003e24 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .riscv.attributes + 0x00003e80 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .riscv.attributes + 0x00003edc 0x5c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .riscv.attributes + 0x00003f38 0x5c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .riscv.attributes + 0x00003f94 0x5c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .riscv.attributes + 0x00003ff0 0x5c esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .riscv.attributes + 0x0000404c 0x5c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .riscv.attributes + 0x000040a8 0x5c esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .riscv.attributes + 0x00004104 0x5c esp-idf/soc/libsoc.a(adc_periph.c.obj) + .riscv.attributes + 0x00004160 0x5c esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + .riscv.attributes + 0x000041bc 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .riscv.attributes + 0x00004218 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + .riscv.attributes + 0x00004274 0x5c esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .riscv.attributes + 0x000042d0 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + .riscv.attributes + 0x0000432c 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + .riscv.attributes + 0x00004388 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + .riscv.attributes + 0x000043e4 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + .riscv.attributes + 0x00004440 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + .riscv.attributes + 0x0000449c 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + .riscv.attributes + 0x000044f8 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + .riscv.attributes + 0x00004554 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + .riscv.attributes + 0x000045b0 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + .riscv.attributes + 0x0000460c 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + .riscv.attributes + 0x00004668 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + .riscv.attributes + 0x000046c4 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + .riscv.attributes + 0x00004720 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .riscv.attributes + 0x0000477c 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + .riscv.attributes + 0x000047d8 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + .riscv.attributes + 0x00004834 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + .riscv.attributes + 0x00004890 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + .riscv.attributes + 0x000048ec 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + .riscv.attributes + 0x00004948 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + .riscv.attributes + 0x000049a4 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + .riscv.attributes + 0x00004a00 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + .riscv.attributes + 0x00004a5c 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + +/DISCARD/ + *(.rela.*) + *(.got .got.plt) + *(.eh_frame_hdr) + *(.eh_frame) +OUTPUT(JoystickControlServo.elf elf32-littleriscv) + +Cross Reference Table + +Symbol File +APB_SARADC esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Enable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Invalidate_ICache_All esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +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) +DW.ref.__gxx_personality_v0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) +EFUSE esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +ESP_EFUSE_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DSLP_LP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DSLP_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_LSLP_HP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_LSLP_HP_DBIAS 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_EXT 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_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_SPI_BOOT_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_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SWAP_UART_SDIO_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA_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_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR 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_WDT_DELAY_SEL 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_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 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_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 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_BLOCK_USR_DATA 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_CRYPT_DPA_ENABLE 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_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_ICACHE 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_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DSLP_LP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DSLP_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 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_KEY_PURPOSE_1 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_KEY_PURPOSE_2 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_KEY_PURPOSE_3 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_KEY_PURPOSE_4 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_KEY_PURPOSE_5 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_LSLP_HP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_LSLP_HP_DBIAS 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_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PKG_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-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 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_SECURE_BOOT_KEY_REVOKE1 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_SECURE_BOOT_KEY_REVOKE2 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_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_BOOT_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_WR_DIS_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SWAP_UART_SDIO_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART1 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_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GDMA esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) +GPSPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +I2C0 esp-idf/esp_system/libesp_system.a(clk.c.obj) +LPPERI esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.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(clk.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +LP_ANA_PERI esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +LP_AON esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +LP_CLKRST 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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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) +LP_I2C esp-idf/esp_system/libesp_system.a(clk.c.obj) +LP_IO esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +LP_TIMER esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +LP_UART esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +LP_WDT esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +MODEM_CLOCK_instance esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +MODEM_LPCON esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +MODEM_SYSCON esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +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) +PAU esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +PAU_instance esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +PCR esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.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(sar_periph_ctrl_common.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_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/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(hw_stack_guard.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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +PMU esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +PMU_instance esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +RFChannelSel C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) +SPIMEM0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPIMEM1 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) +SYSTIMER esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) +SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +TIMERG1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +UART0 esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) +USB_SERIAL_JTAG esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +_Balloc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +_Bfree C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +_PathLocale C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +__action_table C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__adddf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__any_on C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__ascii_mbtowc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +__ascii_wctomb C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.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/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.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/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.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(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(apm_hal.c.obj) + esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.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(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/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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) + esp-idf/newlib/libnewlib.a(newlib_init.c.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(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_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(modem_clock.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/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.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_binary_heap.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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) +__atomic_add_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_always_lock_free esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_compare_exchange esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_compare_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_is_lock_free esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_load esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_nand_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_or_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_store esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_sub_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_xor_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__b2d C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__bswapdi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__chclass C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__clz_tab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) +__clzsi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +__copybits C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__ctzdi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +__cxa_begin_catch C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_end_catch C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_get_exception_ptr C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals_fast C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/cxx/libcxx.a(cxx_init.cpp.obj) +__cxx_init_dummy esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__terminate(void (*)()) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__terminate_handler C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected(void (*)()) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected_handler C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +__d2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__default_global_locale C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +__divdf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__divdi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__eh_globals_init::_S_init C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) +__eqdf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__errno C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/newlib/libnewlib.a(random.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) +__ffsdi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +__ffssi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.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) +__fixdfsi C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +__floatsidf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +__floatunsidf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__fp_lock_all C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__fp_unlock_all C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-errno.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.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) +__global_locale_ptr C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) +__global_pointer$ esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +__gtdf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__hi0bits C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__i2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.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) +__init_priority_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_priority_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) +__ledf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__lo0bits C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__locale_mb_cur_max C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +__localeconv_l C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +__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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +__lshift C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__ltdf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__mcmp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__mdiff C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__moddi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__mprec_bigtens C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__mprec_tens C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__mprec_tinytens C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__muldf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +__multadd C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__multiply C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__nedf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__popcountsi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) +__ratio C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__s2b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__sclose C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__seofread C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) +__sf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) +__sflags C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-flags.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) +__sflush_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) +__sfp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) +__sfp_lock_acquire C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) +__sfp_lock_release C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) +__sfvwrite_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) +__sglue C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__smakebuf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) +__sprint_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) +__sread C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__srefill_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) +__sseek C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__ssprint_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__state_table C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__stdio_exit_handler C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__subdf3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +__swbuf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) +__swbuf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) +__swhatbuf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) +__swrite C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) +__swsetup_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) +__sync_add_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_and_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_lock_release_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_lock_test_and_set_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_nand_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_or_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_sub_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_xor_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__trunctfdf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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) + esp-idf/esp_system/libesp_system.a(panic.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(cpu_start.c.obj) +__ulp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +__umoddi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +__utoa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) +__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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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_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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +__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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +__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) +_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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ctype_ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-ctype_.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_dtoa_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) +_fopen_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) +_fprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) +_fputc_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) +_fputs_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fseek_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) +_fseeko_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fwalk_sglue C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) +_fwrite_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_interrupt_handler esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_impure_data C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.o) +_instruction_reserved_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_interrupt_handler esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.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) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbtowc_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mbtowc_r.o) +_mprec_log10 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) +_multi_heap_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +_multi_heap_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_panic_handler esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/riscv/libriscv.a(vectors_intc.S.obj) +_printf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) +_putc_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) +_puts_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +_rename_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) +_rodata_reserved_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 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) + esp-idf/esp_system/libesp_system.a(cpu_start.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_force_fast_end esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_force_slow_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_text_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +_rtc_text_start esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rv_core_critical_regs_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) +_snprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) +_sprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) +_stat_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) +_strerror_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) +_svfiprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) +_svfprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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_bss_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_bss_start esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_data_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_data_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) +_unlink_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) +_user_strerror C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) +_vector_table esp-idf/riscv/libriscv.a(vectors_intc.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) +_vfprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) +_vprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) +_vsnprintf_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) +_wctomb_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-wctomb_r.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +abort esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.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/freertos/libfreertos.a(idf_additions.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(sar_periph_ctrl_common.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.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/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/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.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/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.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(sleep_modes.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(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.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) +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) +abs_temp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +access esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +adc1_config_channel_atten esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/main/libmain.a(Main.c.obj) +adc1_config_width esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/main/libmain.a(Main.c.obj) +adc1_get_raw esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/main/libmain.a(Main.c.obj) +adc1_pad_get_io_num esp-idf/driver/libdriver.a(adc_legacy.c.obj) +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_apb_periph_claim 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/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +adc_apb_periph_free 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/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +adc_calc_hw_calibration_code 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_channel_io_map esp-idf/soc/libsoc.a(adc_periph.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_get_hw_calibration_chan_compens esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_calibration_init esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_hal_self_calibration esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_set_calibration_param esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_set_controller esp-idf/hal/libhal.a(adc_hal_common.c.obj) +adc_load_hw_calibration_chan_compens 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_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_rate_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +adc_reg_lock esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_set_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +aes_hal_mode_init esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_read_iv esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_set_iv 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/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) +aes_hal_transform_dma_finish esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +aes_hal_transform_dma_start esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +aes_hal_wait_done esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +agc_reg_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) +ant_btrx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_btrx_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_bttx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_bttx_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_dft_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +ant_dft_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_rx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +ant_tx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +ant_wifirx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_wifirx_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_wifitx_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +ant_wifitx_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +apm_hal_apm_ctrl_clk_gating_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_exception_clear esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_exception_status esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_filter_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_filter_enable_all esp-idf/hal/libhal.a(apm_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +apm_hal_apm_ctrl_get_exception_info esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_get_int_src_num esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_interrupt_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_master_sec_mode_config esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_region_config esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_region_filter_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_hal_apm_ctrl_reset_event_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_tee_hal_clk_gating_enable esp-idf/hal/libhal.a(apm_hal.c.obj) +apm_tee_hal_set_master_secure_mode esp-idf/hal/libhal.a(apm_hal.c.obj) +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(Main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +bb_bss_cbw40_dig C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +bb_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +bb_reg_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +bb_wdg_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +bb_wdt_get_status C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +bb_wdt_int_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +bb_wdt_rst_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +bb_wdt_timeout_clear C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +bias_reg_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +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_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_efuse_blk_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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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/app_update/libapp_update.a(esp_ota_ops.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/app_update/libapp_update.a(esp_ota_ops.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) + 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_esp32c6.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_esp32c6.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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_esp32c6.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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_esp32c6.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_esp32c6.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_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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_esp32c6.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_to_index C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +bt_chan_pwr_interp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +bt_filter_reg_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +bt_gain_offset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +bt_get_tx_gain_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +bt_get_tx_tab C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +bt_set_tx_gain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +bt_track_pll_cap C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +bt_track_tx_power C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +bt_tx_gain_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +bt_tx_pwctrl_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +bt_txdc_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +bt_txpwr_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +btbb_wifi_bb_cfg2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +bzero C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cache_error_msg esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +calloc esp-idf/newlib/libnewlib.a(heap.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_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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) +cbw2040_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +chan14_mic_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +chan14_mic_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +chan_to_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +chip_v7_set_chan C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +chip_v7_set_chan_ana C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +chip_v7_set_chan_misc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +chip_v7_set_chan_offset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_clock_output_setup esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_clock_output_teardown esp-idf/hal/libhal.a(clk_tree_hal.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_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +code_to_temp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +coex_bt_release C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_bt_request C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_ble_conn_dyn_prio_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_core_deinit C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_disable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_event_duration_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_pre_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_pti_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_pti_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_register_start_cb C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_release C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_request C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_status_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_core_timer_idx_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_dbg_output C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_dbg_set_log_level C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_deinit C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_disable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_env C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_env_ptr C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_event_duration_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_gpio_debug_matrix_config C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_gpio_debug_matrix_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_gpio_debug_max_event_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_hw_clear_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_hw_debug_matrix_config C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_hw_debug_matrix_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_hw_timer_disable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_hw_timer_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_hw_timer_force C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) +coex_hw_timer_freq_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_hw_timer_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_hw_timer_tick_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_hw_timer_unforce C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) +coex_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_log_level C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_pre_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +coex_preference_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_pti_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_pti_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_pti_tab C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_pti_tab_ptr C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_register_start_cb C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_register_wifi_channel_change_callback C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_rom_data_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_rom_osi_funcs_deinit C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_rom_osi_funcs_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_schm_all_default C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_default C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_default C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_idle_bt_idle_wifi_default C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_conn C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_curr_period_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_idx_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_idx_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_deinit C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_env C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_schm_env_ptr C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_schm_external_coex_wifi_connecting C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_external_coex_wifi_default C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_external_coex_wifi_default_rxonly C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_external_coex_wifi_scan C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_flexible_period_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_flexible_period_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_get_phase_by_idx C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) +coex_schm_interval_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_interval_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_lock C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_schm_process_restart C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_register_callback C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_status_bit_clear C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_schm_status_bit_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_schm_status_bitmap_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_schm_status_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_schm_unlock C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coex_set_gpio_debug_cb C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_dbg.o) +coex_status_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_update_lpclk_interval C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_version_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_version_get_value C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_wifi_channel_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_wifi_channel_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) +coex_wifi_register_update_lpclk_callback C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_wifi_release C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coex_wifi_request C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +coexist_funcs C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +coexist_printf esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +console_access esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_close esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_end_select esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fcntl esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fstat esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fsync esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_open esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_read esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcdrain esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcflush esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcgetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcsetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_write esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +cpu_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +dac_rate_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +dc_iq_est C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +dc_iq_est_high C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +debug_print_line C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +disable_agc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +div C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-div.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +efuse_hal_blk_version 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_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.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/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_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_blk_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_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/efuse/libefuse.a(esp_efuse_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_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) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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) +enable_agc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +environ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +errno C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-reent.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_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) +esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_dma_done esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +esp_aes_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.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(esp_aes_xts.c.obj) +esp_aes_init 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_aes_intr_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) +esp_aes_process_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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(esp_aes_xts.c.obj) +esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.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_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_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_app_desc 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_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.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_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_funcs.c.obj) +esp_cache_aligned_calloc esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) +esp_cache_aligned_calloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) +esp_cache_aligned_malloc esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) +esp_cache_aligned_malloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache.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_cache_err_has_active_err esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.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_cache_err_panic_string esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_cache_get_alignment esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) +esp_cache_msync esp-idf/esp_mm/libesp_mm.a(esp_cache.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/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(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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_coex/libesp_coex.a(esp_coex_adapter.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(esp_clk_tree_common.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) +esp_clk_tree_enable_src esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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_osc_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.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(adc_legacy.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_coex_adapter_funcs_md5_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_adapter_register C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_coex_common_clk_slowclk_cal_get_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_env_is_chip_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_int_disable_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_int_restore_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_malloc_internal_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_semphr_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_semphr_delete_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_semphr_give_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_semphr_take_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_spin_lock_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_task_yield_from_isr_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_timer_arm_us_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_timer_disarm_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_timer_done_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_common_timer_setfn_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +esp_coex_i154_funcs_md5_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_ieee802154_ack_pti_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_ieee802154_coex_break_notify C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_ieee802154_extcoex_rx_stage C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_ieee802154_extcoex_tx_stage C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_ieee802154_txrx_pti_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_rom_version_get C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +esp_coex_status_bit_clear C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +esp_coex_status_bit_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +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/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(esp_cpu_intr.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_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.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-idf/esp_pm/libesp_pm.a(pm_impl.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_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_crypto_dpa_protection_disable esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) +esp_crypto_dpa_protection_enable esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) +esp_crypto_dpa_protection_startup esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) + esp-idf/esp_security/libesp_security.a(init.c.obj) +esp_crypto_ds_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_ds_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_ecc_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_ecc_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_hmac_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_hmac_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start_axi_ahb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.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_enable_gpio_wakeup 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-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.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_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_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/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_enable_rom_secure_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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_unused_key_block 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_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.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 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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/esp_security/libesp_security.a(esp_hmac.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/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_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_rtc_calib_get_cal_voltage esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +esp_efuse_rtc_calib_get_chan_compens esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +esp_efuse_rtc_calib_get_init_code esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +esp_efuse_rtc_calib_get_tsens_val esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +esp_efuse_rtc_calib_get_ver esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_keypurpose_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_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_startup_include_func esp-idf/efuse/libefuse.a(esp_efuse_startup.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_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.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-idf/efuse/libefuse.a(esp_efuse_api_key.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_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-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_cnt 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_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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_system/libesp_system.a(esp_err.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/newlib/libnewlib.a(random.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_funcs.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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_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_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_funcs.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_dangerous_write_protection esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.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_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.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_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_gpio_reserve 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_revoke esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +esp_heap_adjust_alignment_to_hw esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +esp_hmac_calculate esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +esp_hmac_jtag_disable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_hmac_jtag_enable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_hw_stack_guard_get_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_hw_stack_guard_get_fired_cpu esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_hw_stack_guard_get_pc esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_hw_stack_guard_monitor_start esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +esp_hw_stack_guard_monitor_stop esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +esp_hw_stack_guard_set_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.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/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.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_ptr_in_isr_region esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.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_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_cache_add esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_clean esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_get_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_set_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(tag_log_level.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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) +esp_log_level_get esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_level_get_timeout esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) +esp_log_level_set esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_clean esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_get_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_set_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log_write.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.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(spi_bus_lock.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(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.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_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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.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(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.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(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/esp_system/libesp_system.a(startup_funcs.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_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_log_write esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.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(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.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_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/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.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(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.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_startup.c.obj) +esp_log_writev esp-idf/log/liblog.a(log_write.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_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_mspi_32bit_address_flash_feature_check esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_mspi_pin_reserve esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_init_global_stdio esp-idf/newlib/libnewlib.a(newlib_init.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_funcs.c.obj) +esp_ocode_calib_init esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.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_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_copy esp-idf/esp_partition/libesp_partition.a(partition.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.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_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/app_update/libapp_update.a(esp_ota_ops.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_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_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.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_api.cpp.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-idf/esp_partition/libesp_partition.a(partition.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-idf/esp_partition/libesp_partition.a(partition.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/app_update/libapp_update.a(esp_ota_ops.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_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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.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_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_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_common_clock_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_common_clock_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_efuse_get_mac C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +esp_phy_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_erase_cal_data_in_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_get_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_get_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.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_phy_modem_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_release_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_set_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_set_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.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_pm_configure esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_dump_locks esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_get_configuration esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_get_cpu_freq esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_pm_impl_get_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_idle_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_init esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_isr_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_switch_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_waiti esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_acquire esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_create esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_delete esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_lock_release esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.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_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_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.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_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(reset_reason.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/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_restart_noos 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(esp_system.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_rom_delay_us esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(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(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.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +esp_rom_get_reset_reason 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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(reset_reason.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/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +esp_rom_include_multi_heap_patch esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.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_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_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_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_rom_output_flush_tx esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_output_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_output_tx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_output_tx_wait_idle esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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(clk.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 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(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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_rom_regi2c_read esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_route_intr_matrix esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_set_rtc_wake_addr esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_deep_sleep_wake_stub_default_entry esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 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_sha256.c.obj) +esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_cpu_retention_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +esp_sleep_cpu_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_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_ext1_wakeup_with_level_mask 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_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_cpu.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_gpio_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_gpio_include esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_is_valid_wakeup_gpio 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-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_sub_mode_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_sub_mode_dump_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_sub_mode_force_disable 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_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_include_startup_funcs esp-idf/esp_system/libesp_system.a(startup_funcs.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_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.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_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.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_init.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_init.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_systimer.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.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_systimer.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.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_systimer.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_systimer.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_systimer.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.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_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_tx_state_out C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +esp_tx_state_out_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.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/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_dump_fds esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_dump_registered_paths esp-idf/vfs/libvfs.a(vfs.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_include_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_include_nullfs_register esp-idf/vfs/libvfs.a(nullfs.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_mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_null_get_vfs esp-idf/vfs/libvfs.a(nullfs.c.obj) +esp_vfs_null_register esp-idf/vfs/libvfs.a(nullfs.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_vfs_register_common esp-idf/vfs/libvfs.a(vfs.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_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fs esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_register_fs_with_id 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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.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_fs esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_usb_serial_jtag_get_vfs esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_usb_serial_jtag_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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_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_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esprv_get_interrupt_unmask esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) +esprv_int_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_int_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_int_get_priority esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_int_get_type esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_int_is_vectored esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) +esprv_int_set_priority esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esprv_int_set_threshold esp-idf/freertos/libfreertos.a(port.c.obj) +esprv_int_set_type esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +ets_delay_us C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) +ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.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_jtag_enable_temporarily esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +ets_rom_layout_p esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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) +fclose C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fclose.o) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +fe_reg_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +fe_txrx_reset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +fflush C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fflush.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +filter_dcap_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +fopen C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +force_txrx_off C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +fprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputc.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputs C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + 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_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/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.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_linked_list.c.obj) +freq_chan_en_sw C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +freq_get_i2c_data C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +freq_i2c_data_write_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +freq_i2c_mem_write_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +freq_i2c_num_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +freq_i2c_write_set_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +freq_module_resetn C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +freq_reg_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +frexp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) +fseek C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseek.o) +fseeko C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) +fstat C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysfstat.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +g_coa_funcs_p C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_scheme.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +g_coex_adapter_funcs_md5 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +g_coex_basic_md5 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +g_coex_i154_funcs_md5 C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +g_coex_param C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_core.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.o) +g_coex_param_ptr C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_param.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_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_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) +g_phyFuns C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +g_spi_lock_main_flash_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +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_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +gdma_ahb_hal_append esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_enable_etm_task esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_init esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_ahb_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_reset esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_stop esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_append esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_apply_strategy esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_chx_regs_retention esp-idf/soc/libsoc.a(gdma_periph.c.obj) +gdma_config_transfer esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_default_rx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_default_tx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_get_alignment_constraints esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_get_free_m2m_trig_id_mask esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_get_group_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_hal_append esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_deinit esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_access_encrypt_mem esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_etm_task esp-idf/hal/libhal.a(gdma_hal_top.c.obj) +gdma_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_reset esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_burst_size esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_stop esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_new_ahb_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_register_rx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_register_tx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_reset esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_set_priority esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_start esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_stop esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gen_rx_gain_table_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +get_act_hp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +get_act_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +get_bias_ref_code C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +get_chan_target_power_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +get_data_sat C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +get_dc_value C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +get_dco_comp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +get_dslp_dbg esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +get_dslp_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +get_freq_mem_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +get_freq_mem_param C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +get_iq_value C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +get_lslp_dbg esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +get_lslp_hp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +get_phy_version_str C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +get_power_atten C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +get_rate_fcc_index C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +get_rc_dout C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) +get_rf_freq_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +get_rfcal_rxiq_data_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +get_rxbb_dc C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +get_sar2_vol_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +get_temp_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +get_tone_sar_dout C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +get_tx_gain_value C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) +getentropy esp-idf/newlib/libnewlib.a(getentropy.c.obj) +getrandom esp-idf/newlib/libnewlib.a(random.c.obj) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) +gettimeofday C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +gpio_deep_sleep_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_deep_sleep_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_dump_io_configuration esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_force_hold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_force_unhold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_input_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_install_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_iomux_in esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_iomux_out esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_isr_handler_add esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_handler_remove esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_register esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_od_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_od_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_output_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_output_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_reset_pin esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_intr_type esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_sleep_sel_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_sel_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_uninstall_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +hal_ieee802154_coex_break_notify C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +hal_set_IEEE802154_ACK_pti C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +hal_set_IEEE802154_TXRX_pti C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +hal_set_IEEE802154_coex_delay C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) +hal_set_IEEE802154_force_rx_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) +hal_set_IEEE802154_pti_offset C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_alloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.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_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.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) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.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_base.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/heap/libheap.a(heap_caps.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) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.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_monitor_local_minimum_free_size_start esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_monitor_local_minimum_free_size_stop esp-idf/heap/libheap.a(heap_caps.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_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.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) +heap_caps_walk esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_walk_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_tlsf_patch_table_ptr esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +heap_tlsf_table_ptr esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +hmac_hal_clean esp-idf/hal/libhal.a(hmac_hal.c.obj) +hmac_hal_configure esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_next_block_normal esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_next_block_padding esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_read_result_256 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_start esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_write_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_write_one_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +i2c_bbpll_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +i2c_clk_sel C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +i2c_master_reset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +i2c_paral_write_num C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +i2c_rc_cal_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +i2c_rc_set_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +i2c_sar2_init_code C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +i2cmst_reg_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +index_to_txbbgain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.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) +intr_handler_get esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +intr_handler_get_arg esp-idf/riscv/libriscv.a(interrupt.c.obj) +intr_handler_set esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +intr_matrix_route esp-idf/riscv/libriscv.a(interrupt_plic.c.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_mux_enable_lp_io_clock esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +io_mux_set_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +iq_corr_enable C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +itoa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) +libcoexist_reversion_git C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +libcoexist_reversion_remote C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) +linear_to_db C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +localeconv C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-localeconv.o) +lp_timer_hal_clear_alarm_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +lp_timer_hal_clear_overflow_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +lp_timer_hal_get_cycle_count esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +lp_timer_hal_set_alarm_target esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +mac_enable_bb C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +mac_tx_chan_offset_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 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_pagemanager.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_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.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) +mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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/libmbedcrypto.a(esp_aes_dma_core.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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) +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) +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) +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) +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) +mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memchr.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) +memcmp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +memcpy C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_hw.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.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/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_api.cpp.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.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/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memmove-stub.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fvwrite.o) +memset C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-bzero.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.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/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.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) +mhz2ieee C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +mkdir esp-idf/vfs/libvfs.a(vfs.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/bootloader_support/libbootloader_support.a(bootloader_utility.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/spi_flash/libspi_flash.a(flash_mmap.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_clock_deselect_all_module_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +modem_clock_deselect_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_domain_clk_gate_disable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_domain_clk_gate_enable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_deselect_all_coex_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_deselect_all_wifi_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_enable_ble_rtc_timer_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_enable_modem_common_fe_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_enable_modem_private_fe_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_enable_wifipwr_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_get_clock_domain_icg_bitmap esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_select_ble_rtc_timer_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_select_coex_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_select_wifi_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_set_ble_rtc_timer_divisor_value esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_hal_set_clock_domain_icg_bitmap esp-idf/hal/libhal.a(modem_clock_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.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(rtc_clk.c.obj) +modem_clock_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.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(rtc_clk.c.obj) +modem_clock_module_mac_reset esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +modem_clock_select_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_system/libesp_system.a(clk.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) +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) +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_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_base.c.obj) +multi_heap_check esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_in_rom_init esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_os_funcs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_os_funcs_init esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_register esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_reset_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_restore_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_walk esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +newlib_include_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) +newlib_include_getentropy_impl esp-idf/newlib/libnewlib.a(getentropy.c.obj) +newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +newlib_include_init_funcs esp-idf/newlib/libnewlib.a(newlib_init.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) +noise_check_loop C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +noise_floor_auto_set_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +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::HashList() 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::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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.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::checkHeaderConsistency(unsigned char) 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::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) +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::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_partition_lookup.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.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.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::SEC_SIZE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.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) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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) +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) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.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) +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) +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) +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) +nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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_sec_provider_register_hmac 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) +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) +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) +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) +open C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysopen.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +open_i2c_xpd_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +operator delete(void*) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) +operator delete(void*, unsigned int) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +operator delete[](void*) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.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 new(unsigned int) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) +operator new[](unsigned int) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) +operator new[](unsigned int, std::nothrow_t const&) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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_page.cpp.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) +panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(port.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) +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_prepare_frame_from_ctx esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.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(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(debug_helpers.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(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) +panic_soc_check_pseudo_cause 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) +pau_hal_set_regdma_entry_link_addr esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_set_regdma_wait_timeout esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_set_regdma_work_timeout esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_start_regdma_extra_link esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_start_regdma_modem_link esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_stop_regdma_extra_link esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_hal_stop_regdma_modem_link esp-idf/hal/libhal.a(pau_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) +pau_regdma_set_entry_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pau_regdma_set_extra_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pau_regdma_set_modem_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) +pau_regdma_trigger_extra_link_backup esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pau_regdma_trigger_extra_link_restore esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pau_regdma_trigger_modem_link_backup esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +pau_regdma_trigger_modem_link_restore esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +pbus_clear_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +pbus_debugmode C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +pbus_print C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +pbus_rx_dco_cal C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +pbus_rx_dco_cal_1step_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +pbus_rx_dco_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +pbus_set_dco C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +pbus_workmode C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +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) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_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_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) +periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.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) +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) +periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +peripheral_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +phy_11p_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_ana_i2c_master_burst_bbpll_config esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_ana_i2c_master_burst_rf_onoff esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) +phy_ant_clr_update_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_ant_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_ant_need_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_ant_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_bbpll_cal C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_bbpll_en_usb C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_ble_set_chan_base C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_bt_power_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_byte_to_word C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_cal_param_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_cal_print C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_chan_dump_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_chan_dump_cfg_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_chan_filt_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_chan_filt_set_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_change_channel C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_close_rf C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_close_rf_ C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +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_current_level_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_dig_reg_backup C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_dig_reg_backup_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_dis_hw_set_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_dis_hw_set_freq_1 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_disable_cca_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +phy_en_hw_set_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_enable_cca_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_encode_i2c_master C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_fft_scale_force C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +phy_force_freq_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_force_rx_gain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +phy_freq_correct C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_freq_mem_backup C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_ftm_comp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_get_adc_rand C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_get_i2c_data C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.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_mac_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +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/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_get_rf_cal_version C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_rfdata_num C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_get_romfunc_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_get_romfuncs C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_get_rx_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_get_vdd33 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_get_xtal_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_init1 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_init2 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_master_cmd_mem_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_i2c_master_command_mem_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_i2c_master_fill C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +phy_i2c_master_mem_cfg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +phy_i2c_master_mem_txcap C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_init_data esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_init_magic_post esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) +phy_init_magic_pre esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) +phy_init_param_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_internal_delay C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_param C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_param_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_param_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_param_track_tot C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + 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/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +phy_reg_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_reg_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_rfcal_data_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_rfcal_data_check_value C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_rfcal_data_sub C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_rfpll_set_freq_offset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_rx_rifs_en C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_set_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +phy_set_mac_data C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.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/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_rate C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_set_tsens_range C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_tsens_attribute C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +phy_tx_gain_print C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_version_print C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_version_str C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +phy_wakeup_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_wakeup_init_ C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +phy_wifi_enable_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_xpd_rf C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +phy_xpd_tsens C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +pll_cap_mem_update_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +pll_dac_mem_update_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +pmu_hal_hp_get_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) +pmu_hal_hp_set_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_modem_active_backup_disable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_modem_active_backup_enable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_sleep_active_backup_disable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_sleep_active_backup_enable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_sleep_modem_backup_disable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_hp_set_sleep_modem_backup_enable esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hal_lp_get_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) +pmu_hal_lp_set_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +pmu_hp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_hp_system_clock_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_hp_system_digital_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_hp_system_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_hp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_hp_system_retention_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +pmu_lp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_lp_system_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_lp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) +pmu_sleep_calculate_hw_wait_time esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +pmu_sleep_config_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +pmu_sleep_disable_regdma_backup esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pmu_sleep_enable_hp_sleep_sysclk esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) +pmu_sleep_enable_regdma_backup esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +pmu_sleep_finish esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +pmu_sleep_get_wakup_retention_cost esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +pmu_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +pmu_sleep_pll_already_enabled esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +pmu_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxInterruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.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) +posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +printf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-printf.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/main/libmain.a(Main.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + 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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.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) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +putc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-putc.o) +puts C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.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(idf_additions.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) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwdet_code_cal C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +pwdet_ref_code C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +pwdet_reg_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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_cbw40 C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_bb_gain_index C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_chip_i2c_readReg_org C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_get_i2c_hostid C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_get_i2c_mst0_mask C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_get_i2c_read_mask C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pbus_force_mode C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pbus_rd_addr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pbus_rd_shift C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pbus_xpd_rx_on C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pbus_xpd_tx_on C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pwdet_tone_start C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_pwdet_wait_idle C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_read_sar_dout C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_set_chan_cal_interp C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_set_chan_freq_sw_start C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_set_loopback_gain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_start_tx_tone_step C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_stop_tx_tone C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +ram_temp_to_power C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +ram_tsens_temp_read_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +ram_txcal_debuge_mode C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +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) +rc_cal_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rc_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_analog_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +read C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sysread.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +read_hw_noisefloor C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +read_pll_cap C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +read_rf_freq_mem_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +read_sar2_code C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pwdet.o) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) +reg_set_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +regdma_find_link_by_id esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_find_link_by_pos esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_find_module_link_head esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_find_module_link_tail esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_find_next_module_link_head esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_find_prev_module_link_tail esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_destroy esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_dump esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_get_config_mode esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_get_owner_bitmap esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_init esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_new_addr_map esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_addr_map_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_addr_map esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_addr_map_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_continuous esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_continuous_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_wait esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_wait_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_write esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_branch_write_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_continuous esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_continuous_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_wait esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_wait_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_write esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_new_write_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_recursive esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_set_write_wait_content esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) +regdma_link_stats esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +regdma_link_update_next esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +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/esp_hw_support/libesp_hw_support.a(ocode_init.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/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(brownout_hal.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_read_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_read_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_saradc_disable 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_common.c.obj) +regi2c_saradc_enable 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_common.c.obj) +regi2c_tsens_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +regi2c_tsens_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +regi2c_write_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_write_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +register_chipv7_phy C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +register_chipv7_phy_init_param C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +restart_cal C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rf_cal_data_recovery C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rf_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rfcal_pwrctrl C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +rfcal_rxiq_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +rfcal_txcap_loop C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +rfcal_txiq_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +rfpll_cap_check C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +rfpll_cap_correct_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +rfpll_cap_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +rfpll_chgp_cal C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rfrx_gain_index_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +riscv_decode_offset_from_jal_instruction esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) +riscv_excp_names esp-idf/riscv/libriscv.a(interrupt.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +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) +rom_spiflash_legacy_data 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_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_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_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.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(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.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_pm/libesp_pm.a(pm_impl.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_hw_support/libesp_hw_support.a(ocode_init.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) + esp-idf/esp_pm/libesp_pm.a(pm_impl.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(ocode_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_to_pll_and_pll_lock_release 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_set_to_default_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(system_internal.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_rc32k_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_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_set_cpu_switch_to_pll esp-idf/esp_hw_support/libesp_hw_support.a(rtc_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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.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(ocode_init.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_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_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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_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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_force_hold_en_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_init esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +rtc_gpio_iomux_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +rtc_gpio_is_valid_gpio esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_gpio_isolate esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_io_num_map esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_number_get esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_isr_deregister 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_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) +rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.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(ocode_init.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) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(ocode_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) +rtcio_hal_isolate esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtos_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +rtos_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +rtos_save_fpu_coproc esp-idf/riscv/libriscv.a(vectors.S.obj) +rv_core_critical_regs_frame esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rv_core_critical_regs_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rv_core_critical_regs_save esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rx_11b_opt C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rx_gain_force C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +rx_gain_force_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +rx_table_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +rxdc_est_min_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +rxiq_cal_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +rxiq_cover_mg_mp_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +rxiq_get_mis_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +rxiq_set_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) +s_get_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_spinlock esp-idf/esp_hw_support/libesp_hw_support.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) +s_update_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) +sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.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) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.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) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.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) +save_pbus_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.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) +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) +set_cca C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +set_cca_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +set_chan_freq_hw_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +set_chan_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +set_chanfreq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +set_channel_rfpll_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +set_lb_txiq_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +set_pbus_mem C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +set_pbus_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +set_rf_freq_offset C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +set_rfpll_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +set_rx_comp_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +set_rx_gain_cal_dc_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +set_rx_gain_cal_iq_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +set_rx_gain_table C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +set_rx_sense C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +set_rx_sense_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +set_rxclk_en C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) +set_tx_gain_mem C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +set_txclk_en C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +setlocale C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +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_hash_dma 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) +sha_hal_write_digest 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) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) +sleep_clock_system_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_console_usj_pad_backup_and_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_console_usj_pad_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_cpu_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_state_phy_link_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_state_phy_link_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem_state.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_do_phy_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_modem_link_done esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_modem_state_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_modem_state_enabled esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_modem_state_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_retention_do_extra_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_dump_entries esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_dump_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_entries_create esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_entries_get esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_find_link_by_id esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_get_created_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_get_inited_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_is_module_created esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_is_module_inited esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_allocate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_bitmap_and esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_module_bitmap_eq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_module_bitmap_not esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_bitmap_or esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_free esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_module_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) +sleep_retention_power_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +sleep_retention_power_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) +snprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-snprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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) +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/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_dma_memory_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_get_attr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_get_dma_ctx esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_init_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_lock_acquire_end esp-idf/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_check_dev_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_clear_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_entry esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_exit esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_req_exist esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_request esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_acquiring_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_by_id esp-idf/esp_driver_spi/libesp_driver_spi.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/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_touch esp-idf/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_main_set_lock esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_register_destroy_func esp-idf/esp_driver_spi/libesp_driver_spi.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_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.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) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.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) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.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_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.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_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.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_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.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_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.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/esp_partition/libesp_partition.a(partition.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_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.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_funcs.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_flash_timing_is_tuned esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_reg_retention_info esp-idf/soc/libsoc.a(spi_periph.c.obj) +spi_timing_get_flash_timing_param esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +spicommon_bus_free_io_cfg esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_bus_initialize_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_bus_using_iomux esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_cs_free_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_cs_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_chan_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_desc_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_desc_setup_link esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_irqdma_source_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_irqsource_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_in_use esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) +sprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +std::bad_alloc::what() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +std::bad_exception::what() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) +std::exception::~exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +std::get_new_handler() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +std::get_terminate() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +std::get_unexpected() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +std::nothrow C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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_page.cpp.obj) +std::set_new_handler(void (*)()) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) +std::set_terminate(void (*)()) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +std::set_unexpected(void (*)()) C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) +std::terminate() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__is_function_p() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::~type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) +std::uncaught_exception() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) +std::uncaught_exceptions() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) +std::unexpected() C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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) +strcat C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strcmp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcmp.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +strcpy C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcpy.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strerror C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) +strerror_l C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror.o) +strerror_r C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlen.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strlcat.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + 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) + 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(tasks.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncmp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncmp.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a(coexist_api.o) + 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/vfs/libvfs.a(vfs.c.obj) +strncpy C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strncpy.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +strstr C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +systimer_hal_connect_alarm_counter esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_can_stall_by_cpu esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_value_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) +systimer_hal_enable_alarm_int esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_enable_counter esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_get_alarm_value esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_counter_value esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_init esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_select_alarm_mode esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_period esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_target esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_set_tick_rate_ops esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_ticks_to_us esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_us_to_ticks esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +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) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +temp_sensor_get_raw_value esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temp_sensor_sync_tsens_idx esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +temperature_sensor_attributes esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +temperature_sensor_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_regs_retention esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) +test_filter_band_set C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_i2c.o) +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_systimer.c.obj) +tlsf_check_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +tlsf_get_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) +tlsf_poison_check_pfunc_set esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +tlsf_set_rom_patches esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) +tlsf_walk_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) +transaction clone for std::bad_exception::what() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::what() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::~exception() const C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_code_read C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +tsens_dac_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +tsens_dac_to_index C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) +tsens_read_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +tsens_temp_read_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tsens.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +tx_cap_init_loop C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +tx_i2c_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +tx_paon_set_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +tx_pwctrl_background C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +tx_pwctrl_background_ C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +tx_pwctrl_bg_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +tx_pwctrl_init_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +tx_pwctrl_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +txbbgain_to_index C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +txcal_work_mode C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +txdc_cal_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +txdc_cal_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +txdc_cal_pwdet C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +txdc_cal_pwdet_init C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +txiq_cal_init_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +txiq_cover_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +txiq_get_mis_pwr C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) +txiq_set_reg C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_cal.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_cal.o) +txpwr_cal_track C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +txpwr_correct C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +typeinfo for std::bad_alloc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +typeinfo for std::exception C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::bad_alloc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::exception C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +uart_clear_intr_status esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_pattern_det_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_driver_delete esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_driver_install esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_pattern_det_baud_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_flush esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_flush_input esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_buffered_data_len esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_collision_flag esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_sclk_freq esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_selectlock esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_tx_buffer_free_size esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +uart_intr_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_is_driver_installed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_param_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_pattern_get_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_read_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_reg_retention_info esp-idf/soc/libsoc.a(uart_periph.c.obj) +uart_set_always_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_dtr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_line_inverse esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_loop_back esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_mode esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_pin esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rts esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rx_full_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_select_notif_callback esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_sw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_tx_empty_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_tx_idle_num esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_tx_chars esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_vfs_dev_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_include_dev_init esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_wait_tx_done esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_wait_tx_idle_polling esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_write_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_write_bytes_with_break esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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) +usb_serial_jtag_connection_monitor_include esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +usb_serial_jtag_driver_install esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +usb_serial_jtag_driver_uninstall esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +usb_serial_jtag_is_connected esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +usb_serial_jtag_is_driver_installed esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_read_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_read_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_set_select_notif_callback esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_include_dev_init esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_wait_tx_done esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_write_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_write_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) +utime esp-idf/vfs/libvfs.a(vfs.c.obj) +utoa C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-utoa.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.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) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.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) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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(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(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.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) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortClearInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.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(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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) + 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(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_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/heap/libheap.a(heap_caps.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.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(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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) + 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(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_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/heap/libheap.a(heap_caps.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(idf_additions.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(port.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortYieldFromISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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) + esp-idf/newlib/libnewlib.a(locks.c.obj) +vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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) +vSystimerSetup esp-idf/freertos/libfreertos.a(port_systick.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/main/libmain.a(Main.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.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) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.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) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.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) +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) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskResume 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) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(queue.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) +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) +vfiprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfiprintf.o) +vfprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log_write.c.obj) +vsnprintf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) +vtable for __cxxabiv1::__class_type_info C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +vtable for __cxxabiv1::__forced_unwind C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) +vtable for std::bad_exception C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::exception C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::type_info C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) +wait_freq_set_busy C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +wait_i2c_sdm_stable C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) +wait_rfpll_cal_end C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +wdt_hal_config_stage 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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.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) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wdt_hal_enable 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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_feed 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/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/esp_rom/libesp_rom.a(esp_rom_wdt.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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_is_enabled 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/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable 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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.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(startup_funcs.c.obj) +wdt_hal_write_protect_enable 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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.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(startup_funcs.c.obj) +wifi_11g_rate_chg_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +wifi_agc_sat_gain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.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_fbw_sel C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_basic.o) +wifi_get_target_power_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +wifi_get_tx_gain_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) +wifi_get_tx_tab C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) +wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_rifs_mode_en C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_api.o) +wifi_set_tx_gain C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_debug.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_feature.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +wifi_track_tx_power C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_track.o) +wr_rf_freq_mem_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +wr_rx_gain_mem C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +write C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-syswrite.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +write_chan_freq C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_init.o) +write_gain_mem_new C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_reg.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_tx_gain.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rx_gain.o) +write_pbus_mem C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_pbus.o) +write_pll_cap C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) + C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_hw_freq.o) +write_rfpll_sdm C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6\libphy.a(phy_rfpll.o) +xIsrStack esp-idf/freertos/libfreertos.a(port.c.obj) +xIsrStackBottom esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xIsrStackTop esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.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) +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(gdma.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_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/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) +xPortSetInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortSwitchFlag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.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/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_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.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) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.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) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.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(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/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/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) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + 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(panic_arch.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/spi_flash/libspi_flash.a(spi_flash_os_func_app.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_lock.c.obj) + esp-idf/log/liblog.a(log_timestamp.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskIncrementTick 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/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.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/riscv/libriscv.a(vectors.S.obj) diff --git a/JoystickControlServo/build/app-flash_args b/JoystickControlServo/build/app-flash_args new file mode 100644 index 0000000..f39aab7 --- /dev/null +++ b/JoystickControlServo/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 JoystickControlServo.bin diff --git a/JoystickControlServo/build/bootloader-flash_args b/JoystickControlServo/build/bootloader-flash_args new file mode 100644 index 0000000..7b1a5bd --- /dev/null +++ b/JoystickControlServo/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-done new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt new file mode 100644 index 0000000..2ef1143 --- /dev/null +++ b/JoystickControlServo/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/famil/esp/v5.4/esp-idf/components/bootloader/subproject +work_dir= + diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt new file mode 100644 index 0000000..31617d1 --- /dev/null +++ b/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir= diff --git a/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..6695639 --- /dev/null +++ b/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig;-DIDF_PATH=C:/Users/famil/esp/v5.4/esp-idf;-DIDF_TARGET=esp32c6;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;;-B;' diff --git a/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake new file mode 100644 index 0000000..509f303 --- /dev/null +++ b/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject") + file(MAKE_DIRECTORY "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject") +endif() +file(MAKE_DIRECTORY + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader" + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix" + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/tmp" + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp" + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src" + "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/JoystickControlServo/build/bootloader/.bin_timestamp b/JoystickControlServo/build/bootloader/.bin_timestamp new file mode 100644 index 0000000..df4b43c --- /dev/null +++ b/JoystickControlServo/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +f17a12a0030652cc7e07e914bee8cacd C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin diff --git a/JoystickControlServo/build/bootloader/.ninja_deps b/JoystickControlServo/build/bootloader/.ninja_deps new file mode 100644 index 0000000..1ee7eba Binary files /dev/null and b/JoystickControlServo/build/bootloader/.ninja_deps differ diff --git a/JoystickControlServo/build/bootloader/.ninja_log b/JoystickControlServo/build/bootloader/.ninja_log new file mode 100644 index 0000000..d37292c --- /dev/null +++ b/JoystickControlServo/build/bootloader/.ninja_log @@ -0,0 +1,120 @@ +# ninja log v6 +36 137 7609506067254706 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 9ffa112c92deef +53 198 7609506067417224 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 13346301c1be6c91 +49 208 7609506067417224 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 2f949b868d9a1421 +42 276 7609506067254706 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj d3c353551e1ead07 +58 302 7609506067417224 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 450d403230559be1 +63 323 7609506067582601 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj 340a991ea4b96886 +24 354 7609506067106514 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 96ccc5a21aad795 +28 360 7609506067233664 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj f28deda32fb45a5e +70 397 7609506067582601 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 5759a9990ca4dbe0 +32 403 7609506067254706 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 698d5aab31518fee +20 411 7609506067106514 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 937b9fe7f9483723 +16 416 7609506067106514 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 6a8e588f3b5c5069 +74 426 7609506067582601 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 994300b68c527151 +139 432 7609506068281621 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 79146f7e293ebde4 +209 437 7609506068905804 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 34110c78642fc567 +80 456 7609506067739268 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 86e534e2b1103faa +198 527 7609506068905804 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj 21a72662004b78fd +276 532 7609506069723978 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj 8b8b0e6026195467 +432 646 7609506071239201 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 162f98d800004be +416 686 7609506071072436 esp-idf/log/liblog.a 59aad262be1356c2 +437 703 7609506071239201 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj c8d265c594c6d022 +411 708 7609506071067070 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj 251a78c65b276ece +426 713 7609506071072436 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj b3c59e06b226da56 +456 718 7609506071405379 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj d96e0117d88fc460 +355 726 7609506070478071 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj 336b22dda8ebf287 +360 732 7609506070478071 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj d15dd435e7b06bd3 +302 737 7609506069918700 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj ac7d6d3332b5163f +527 829 7609506072227334 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj 31157b9945463557 +404 840 7609506070905512 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj d2e3351b95fc461c +532 884 7609506072239013 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj a1ed85d01cab9187 +342 923 7609506070318046 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj 84a7f9e5a59a378a +703 1033 7609506073907351 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 6f62458a1d5aa26f +397 1047 7609506070905512 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj ec9cbe2ab1a353e0 +732 1079 7609506074240964 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj dd7c620e91ae6d5d +646 1084 7609506073405558 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 17e471f97ddfcf69 +686 1089 7609506073738114 esp-idf/esp_rom/libesp_rom.a c4ad885b672c311 +708 1098 7609506073907351 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 416eddf7c7b90387 +737 1103 7609506074240964 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 7b1548266c039312 +829 1108 7609506075239140 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 704aaf0038dda6dc +727 1114 7609506074224272 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 9c344fc23dbad746 +840 1142 7609506075239140 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 7670db8c4165c7f1 +718 1148 7609506074074230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 3e63eb8085fd0be5 +923 1183 7609506076072171 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj f031f1aaf925adbb +713 1232 7609506074074230 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 3d7ce7c172b5c6ac +884 1253 7609506075739179 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 6ea9ffa33730a279 +1089 1300 7609506077737887 esp-idf/esp_common/libesp_common.a b75bb542b81b13c0 +1033 1335 7609506077238718 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj 37568d2c0b63269b +1142 1390 7609506078239022 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj 471ee8afcf70e9c3 +1079 1396 7609506077737887 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 252504ff6ccf3c47 +1103 1401 7609506077905560 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 3fc86e3d6f74aee9 +1148 1498 7609506078406924 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 3807583d81268b2b +1232 1513 7609506079238986 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_sha.c.obj 4ef2f7fd2d564693 +1183 1532 7609506078738975 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 225d6fb0c86d30 +1084 1538 7609506077737887 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj 3035545d201d8fbf +1300 1556 7609506079905583 esp-idf/esp_hw_support/libesp_hw_support.a 8cd8a374d8ac6a89 +1253 1566 7609506079406958 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj 7f6c2da2fbd2d03b +1048 1594 7609506077407240 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 5e1806b1380de1ec +1390 1608 7609506080738895 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj 76625e302cefebd +1114 1667 7609506078073001 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 1897449ee9c5a19e +1396 1698 7609506080907109 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj e32ef5960d0193f0 +1401 1712 7609506080907109 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 287cdc4dfa857f51 +1514 1764 7609506082072602 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 2a7ceef615c5ef54 +1532 1804 7609506082239012 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 56c52964108628d6 +1566 1809 7609506082572292 esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj ec011d59fc837bfa +1098 1838 7609506077905560 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 929c5da323bfe80e +1538 1861 7609506082239012 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj 6cc35517ee0f1167 +1108 1866 7609506077905560 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 2a96d112cb2ab4c3 +1335 1871 7609506080238785 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj 4fb1ef1e7e469e22 +1698 1877 7609506083907223 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 54dd0f9a4aa1eca3 +1556 1902 7609506082405644 esp-idf/esp_system/libesp_system.a c63141d4b238a3f4 +1498 1911 7609506081905348 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 5f83ad40321c41a1 +1712 1951 7609506084072235 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj e826c49bb6e7e0df +1594 1956 7609506082900313 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 12ae391ae0c11e00 +1764 1961 7609506084572106 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj 8cd087ca49e6b4a9 +1809 1966 7609506084905476 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj 78a0227a7349fe7a +1804 1971 7609506084905476 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj 4cc0403e0d4fc282 +1608 2000 7609506082907104 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 702b93958a76affb +1866 2017 7609506085572502 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj 60b423bdc47ebb23 +1861 2079 7609506085572502 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj 142c28fe463071a9 +1838 2112 7609506085407370 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj 28a7ec6ef74aa169 +1877 2119 7609506085727548 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj 12518f5ec6a3cf82 +1951 2126 7609506086407602 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj 5514aa17e37dd19c +1911 2136 7609506086072113 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj 1fb4dde66448a70 +1961 2143 7609506086567023 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj 93197800d43e661b +1872 2157 7609506085572502 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj 9d7f4ae9933c35a7 +1971 2165 7609506086572346 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj f30670bf9ff09b8d +1956 2170 7609506086407602 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj bd96d1f10651de4d +1966 2175 7609506086572346 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj 1726de5f76eba415 +2001 2184 7609506086907028 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj a6dced624e26ed38 +2175 2225 7609506089072492 project_elf_src_esp32c6.c ec7a446ec425101e +2175 2225 7609506089072492 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/project_elf_src_esp32c6.c ec7a446ec425101e +2017 2231 7609506087072418 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj 8fec812afa2dc37a +1902 2246 7609506085907260 esp-idf/efuse/libefuse.a 4741c28228cfcb30 +2119 2262 7609506088072119 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj a780c4a9e22f77db +2137 2298 7609506088239199 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj e027d6e5375a2b0f +2143 2301 7609506088394246 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj f124fbdb1bfbf548 +2079 2305 7609506087739604 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj 2a67ea812d63655f +2112 2311 7609506088072119 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj d89f3e4815ebcf1f +2126 2319 7609506088072119 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj 90b35d06ff1631da +2158 2326 7609506088405601 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj 66a597b94b718915 +2225 2331 7609506089072492 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj 391fcce5888d9fb5 +2165 2332 7609506088574404 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj be3e80252494f4ce +2170 2340 7609506088574404 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj 1cee1cd7ae61f12d +2184 2380 7609506088738835 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 6bc07a9dff6a854d +2247 2422 7609506089407178 esp-idf/bootloader_support/libbootloader_support.a ed3b57fa74b6a853 +2422 2474 7609506091071878 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 94c37b047d01bbb9 +2474 2525 7609506091573412 esp-idf/spi_flash/libspi_flash.a 6282be0543ebbc68 +1667 2586 7609506083572238 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b0ae667d10f0b884 +2525 2588 7609506092071943 esp-idf/hal/libhal.a b482440ed5c3ae89 +2588 2638 7609506092738299 esp-idf/micro-ecc/libmicro-ecc.a 4f751f8789212410 +2638 2740 7609506093237015 esp-idf/soc/libsoc.a a418a6f0984ee02e +2740 2786 7609506094236659 esp-idf/main/libmain.a a7b4f74a554ffa94 +2786 2950 7609506094737151 bootloader.elf 518eabbb39f8ffdb +2950 3154 7609506098403530 .bin_timestamp 9a8aaf00d9b148a4 +2950 3154 7609506098403530 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/.bin_timestamp 9a8aaf00d9b148a4 +3154 3230 7609506098403530 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 6c4c59ac4023ce15 +3154 3230 7609506098403530 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 6c4c59ac4023ce15 +32 104 7609506459400138 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 6c4c59ac4023ce15 +32 104 7609506459400138 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 6c4c59ac4023ce15 diff --git a/JoystickControlServo/build/bootloader/CMakeCache.txt b/JoystickControlServo/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..2844eef --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeCache.txt @@ -0,0 +1,444 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader +# It was generated by CMake: C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' + +//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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs ' + +//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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.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/famil/esp/v5.4/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Users/famil/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=C:/Users/famil/esp/v5.4/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32c6 + +//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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:/Users/famil/.espressif/python_env/idf5.4_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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/famil/esp/v5.4/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=25 +//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/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Users/famil/.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 + diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..20b10d9 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) + + diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..2412efa --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..d67e8e4 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..cfc3f03 Binary files /dev/null and b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..7891411 Binary files /dev/null and b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..da25346 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/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/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.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/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..5d6b01d Binary files /dev/null and b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..54c700a Binary files /dev/null and b/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/JoystickControlServo/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..13d55b4 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,576 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe + Build flags: -march=rv32imac_zicsr_zifencei + Id flags: + + The output was: + 0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe + Build flags: -march=rv32imac_zicsr_zifencei + Id flags: + + The output was: + 0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + riscv32-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0 + Copyright (C) 2024 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nojuwh" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nojuwh" + cmakeVariables: + CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nojuwh' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_87880 + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_87880.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\cctV5V4m.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: bd4b44cd937a52babfee906ad526682a + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj C:\\Users\\famil\\AppData\\Local\\Temp\\cctV5V4m.s + GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -o cmTC_87880 && cd ." + Using built-in specs. + Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_87880' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_87880.' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\cclpXlPs.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_87880 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_87880' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_87880.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nojuwh'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_87880] + ignore line: [[1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_87880.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\cctV5V4m.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: bd4b44cd937a52babfee906ad526682a] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj C:\\Users\\famil\\AppData\\Local\\Temp\\cctV5V4m.s] + ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -o cmTC_87880 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_87880' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_87880.'] + link line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\cclpXlPs.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_87880 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_87880.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\cclpXlPs.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [--sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_87880] ==> ignore + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_87880.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010094\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_87880' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_87880.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wzuuae" + binary: "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wzuuae" + cmakeVariables: + CMAKE_CXX_FLAGS: "-march=rv32imac_zicsr_zifencei " + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake;C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wzuuae' + + Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_37b3e + [1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_37b3e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\ccFpMPpG.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" + ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32 + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\famil\\AppData\\Local\\Temp\\ccFpMPpG.s + GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_37b3e && cd ." + Using built-in specs. + Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_37b3e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_37b3e.' + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccFRZVuH.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_37b3e -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_37b3e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_37b3e.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + add: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake:564 (__project)" + - "CMakeLists.txt:67 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wzuuae'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/famil/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_37b3e] + ignore line: [[1/2] C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_37b3e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\famil\\AppData\\Local\\Temp\\ccFpMPpG.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/'] + ignore line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\famil\\AppData\\Local\\Temp\\ccFpMPpG.s] + ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_37b3e && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_37b3e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_37b3e.'] + link line: [ C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccFRZVuH.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_37b3e -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_37b3e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\famil\\AppData\\Local\\Temp\\ccFRZVuH.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [--sysroot=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_37b3e] ==> ignore + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] + arg [-LC:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_37b3e.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010094\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_37b3e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_37b3e.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] + collapse library dir [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] + implicit fwks: [] + + +... diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/TargetDirectories.txt b/JoystickControlServo/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..2b018ed --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,86 @@ +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/menuconfig.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/confserver.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/save-defconfig.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/gen_project_binary.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/app.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/erase_flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/merge-bin.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/monitor.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/_project_elf_src.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/bootloader.elf.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/size.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/size-files.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/size-components.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/uf2.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/uf2-app.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/riscv/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/riscv/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj b/JoystickControlServo/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj new file mode 100644 index 0000000..8475fc3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/clean_additional.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..02eda93 --- /dev/null +++ b/JoystickControlServo/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_esp32c6.c" + ) +endif() diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/cmake.check_cache b/JoystickControlServo/build/bootloader/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/JoystickControlServo/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/JoystickControlServo/build/bootloader/CMakeFiles/git-data/HEAD b/JoystickControlServo/build/bootloader/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..59a6bf6 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +67c1de1eebe095d554d281952fde63c16ee2dca0 diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/JoystickControlServo/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..8924286 --- /dev/null +++ b/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref b/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..59a6bf6 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +67c1de1eebe095d554d281952fde63c16ee2dca0 diff --git a/JoystickControlServo/build/bootloader/CMakeFiles/rules.ninja b/JoystickControlServo/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..1d0f709 --- /dev/null +++ b/JoystickControlServo/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,319 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: bootloader +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__bootloader.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__bootloader.2eelf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_soc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_micro-ecc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_hal_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_efuse_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_log_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_main_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\famil\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\famil\.espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\famil\.espressif\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/JoystickControlServo/build/bootloader/bootloader.bin b/JoystickControlServo/build/bootloader/bootloader.bin new file mode 100644 index 0000000..8aa9715 Binary files /dev/null and b/JoystickControlServo/build/bootloader/bootloader.bin differ diff --git a/JoystickControlServo/build/bootloader/bootloader.elf b/JoystickControlServo/build/bootloader/bootloader.elf new file mode 100644 index 0000000..ad2ca6c Binary files /dev/null and b/JoystickControlServo/build/bootloader/bootloader.elf differ diff --git a/JoystickControlServo/build/bootloader/bootloader.map b/JoystickControlServo/build/bootloader/bootloader.map new file mode 100644 index 0000000..f0fb940 --- /dev/null +++ b/JoystickControlServo/build/bootloader/bootloader.map @@ -0,0 +1,4247 @@ +Archive member included to satisfy reference by file (symbol) + +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_esp32c6.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) +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_esp32c6.c.obj) (bootloader_clock_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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(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_esp32c6.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_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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_esp32c6.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_esp32c6.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_DIS_DIRECT_BOOT) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_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_process) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_get_key_dis_read) +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_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_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (get_act_hp_dbias) +esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_regi2c_write) +esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init) +esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (esp_log_timestamp) +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(lp_timer_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) (lp_timer_hal_get_cycle_count) +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/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) (cache_hal_init) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (__udivdi3) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) (__clz_tab) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (_impure_data) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) +C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj + .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj + .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj + .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj + .note.GNU-stack + 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj + .riscv.attributes + 0x00000000 0x5c CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.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) + .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 0xa esp-idf/main/libmain.a(bootloader_start.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 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0xba 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) + .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 0xe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0xbe 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 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x52 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_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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(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 0x10 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x00000000 0xb6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0x124 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x3c7 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x334 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.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 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.8 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_config_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .iram1.1 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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) + .sdata.ESP_EFUSE_SYS_DATA_PART2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DBIAS_VOL_GAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DSLP_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DSLP_LP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_LSLP_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_LSLP_HP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ACTIVE_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ACTIVE_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_EXT + 0x00000000 0xc 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) + .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_CRYPT_DPA_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SEC_DPA_LEVEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_JTAG_SEL_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SWAP_UART_SDIO_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DSLP_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DSLP_LP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_LSLP_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_LSLP_HP_DBG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_MAC_EXT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SWAP_UART_SDIO_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SYS_DATA_PART2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USER_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DBIAS_VOL_GAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DSLP_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DSLP_LP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.LSLP_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.LSLP_HP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ACTIVE_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ACTIVE_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.MAC_EXT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.CRYPT_DPA_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SEC_DPA_LEVEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.VDD_SPI_AS_GPIO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.JTAG_SEL_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.SWAP_UART_SDIO_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS_BLOCK_KEY0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_VDD_SPI_AS_GPIO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_KEY0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLOCK_USR_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DBIAS_VOL_GAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DSLP_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DSLP_LP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_LSLP_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_LSLP_HP_DBG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ACTIVE_LP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ACTIVE_HP_DBIAS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_MAC_EXT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_BLK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SPI_DOWNLOAD_MSPI_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SEC_DPA_LEVEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_JTAG_SEL_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_SWAP_UART_SDIO_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_CRYPT_DPA_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .srodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x2556 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 0x223 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x2835 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table.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 0x2a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x18f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x1f 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 0x49a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x613 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_fields.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 0x6e 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 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x74 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xae esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_destroy_block.str1.4 + 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0x13c 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) + .sbss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0x11bf esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x3cb esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0xab2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x11c9 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0x92a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.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.4 + 0x00000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x174 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x46 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 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x68 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xde esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_cnt.str1.4 + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0xd4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x64 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x92 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 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0xd6 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) + .sbss.s_burn_counter + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x1392 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x42e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x1331 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 0x2d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x17f8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xa88 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x2bc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.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_block_is_empty + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x6a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0x6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.4 + 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0x114 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0x156 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.4 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.4 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.0 + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.1 + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.2 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.3 + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.4 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__.5 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x15b3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x3b8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xdf1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x210 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x14b5 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x107d 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) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x324 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .riscv.attributes + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api_key.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 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.4 + 0x00000000 0x1b0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x2ba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x8ec esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x287 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x38c 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 0x118 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xb3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x7dc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0xdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x00000000 0x5c 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) + .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) + .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_bbpll_add_consumer + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_remove_consumer + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_and_pll_lock_release + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_set_to_default_config + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0xe 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(pmu_param.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_power_param_default.str1.4 + 0x00000000 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_hp_system_power_param_default + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_clock_param_default.str1.4 + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_hp_system_clock_param_default + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_digital_param_default.str1.4 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_hp_system_digital_param_default + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_analog_param_default.str1.4 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_hp_system_analog_param_default + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_hp_system_retention_param_default.str1.4 + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_hp_system_retention_param_default + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_lp_system_power_param_default.str1.4 + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_lp_system_power_param_default + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.pmu_lp_system_analog_param_default.str1.4 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text.pmu_lp_system_analog_param_default + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.lp_analog.0 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.1 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.lp_power.2 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.3 + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_retention.4 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.5 + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_analog.6 + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.7 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_digital.8 + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.9 + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_clock.10 + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.11 + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.hp_power.12 + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .rodata.__func__.13 + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .iram1.1 0x00000000 0x4e esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .iram1.2 0x00000000 0x9c esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .rodata.__func__.0 + 0x00000000 0x16 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .text.wdt_hal_deinit + 0x00000000 0x84 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.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 0x14 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 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x4c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x6a esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.1 0x00000000 0x46 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.3 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .iram1.4 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_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_bytes_to_pages + 0x00000000 0x34 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0xe8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0xa6 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0xde esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.s_get_cache_state + 0x00000000 0x3e esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_suspend + 0x00000000 0x34 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_resume + 0x00000000 0x38 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_invalidate_addr + 0x00000000 0x3c esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_freeze + 0x00000000 0x1c esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_unfreeze + 0x00000000 0x1a esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_get_cache_line_size + 0x00000000 0x22 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x1b6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x10c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_loclists + 0x00000000 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x107 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0x1e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + .text 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x1b6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x10c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_loclists + 0x00000000 0x6b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x107 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0x1e4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) + .text 0x00000000 0x42 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xe6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x65 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xd6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xe9 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x1ab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x35a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x776 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x1a6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x6ad C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x8f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x97b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x25a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .rodata 0x00000000 0x100 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_info 0x00000000 0xed C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_abbrev 0x00000000 0x70 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_line 0x00000000 0x3f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_str 0x00000000 0x1a7 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .debug_line_str + 0x00000000 0x1b2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + .text 0x00000000 0x48 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x10f C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x8a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x130 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x157 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x113 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x273 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0xf0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .sdata 0x00000000 0x4 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x00000000 0x84c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x00000000 0x174 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x00000000 0x18 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x00000000 0x51 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x00000000 0x4e3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x00000000 0x27b C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + .text 0x00000000 0xa8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x18e C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xdc C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x33 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0xf1 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .riscv.attributes + 0x00000000 0x5a C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0xe8 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x256 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x107 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_loclists + 0x00000000 0x1d6 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x31c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0x134 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0x340 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .comment 0x00000000 0x30 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .note.GNU-stack + 0x00000000 0x0 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_frame 0x00000000 0x20 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + .riscv.attributes + 0x00000000 0x5c C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + +Memory Configuration + +Name Origin Length Attributes +iram_seg 0x4086c110 0x00002500 xrw +iram_loader_seg 0x4086e610 0x00007000 xrw +dram_seg 0x40875610 0x00005000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32C6 = 0x0 +LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj +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/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/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/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/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/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libnosys.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +START GROUP +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a +LOAD C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libnosys.a +END GROUP + [!provide] PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) + [!provide] PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) + [!provide] PROVIDE (esprv_int_enable = esprv_intc_int_enable) + [!provide] PROVIDE (esprv_int_disable = esprv_intc_int_disable) + [!provide] PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) + 0x40000018 rtc_get_reset_reason = 0x40000018 + 0x4000001c analog_super_wdt_reset_happened = 0x4000001c + 0x40000020 rtc_get_wakeup_cause = 0x40000020 + 0x40000024 rtc_unhold_all_pads = 0x40000024 + 0x40000028 ets_printf = 0x40000028 + 0x4000002c ets_install_putc1 = 0x4000002c + 0x40000030 ets_install_putc2 = 0x40000030 + 0x40000034 ets_install_uart_printf = 0x40000034 + 0x40000038 ets_install_usb_printf = 0x40000038 + 0x4000003c ets_get_printf_channel = 0x4000003c + 0x40000040 ets_delay_us = 0x40000040 + 0x40000044 ets_get_cpu_frequency = 0x40000044 + 0x40000048 ets_update_cpu_frequency = 0x40000048 + 0x4000004c ets_install_lock = 0x4000004c + 0x40000050 UartRxString = 0x40000050 + 0x40000054 UartGetCmdLn = 0x40000054 + 0x40000058 uart_tx_one_char = 0x40000058 + 0x4000005c uart_tx_one_char2 = 0x4000005c + 0x40000060 uart_rx_one_char = 0x40000060 + 0x40000064 uart_rx_one_char_block = 0x40000064 + 0x40000068 uart_rx_intr_handler = 0x40000068 + 0x4000006c uart_rx_readbuff = 0x4000006c + 0x40000070 uartAttach = 0x40000070 + 0x40000074 uart_tx_flush = 0x40000074 + 0x40000078 uart_tx_wait_idle = 0x40000078 + 0x4000007c uart_div_modify = 0x4000007c + 0x40000080 ets_write_char_uart = 0x40000080 + 0x40000084 uart_tx_switch = 0x40000084 + 0x40000088 roundup2 = 0x40000088 + 0x4000008c multofup = 0x4000008c + 0x40000090 software_reset = 0x40000090 + 0x40000094 software_reset_cpu = 0x40000094 + 0x40000098 ets_clk_assist_debug_clock_enable = 0x40000098 + 0x4000009c clear_super_wdt_reset_flag = 0x4000009c + 0x400000a0 disable_default_watchdog = 0x400000a0 + 0x400000a4 esp_rom_set_rtc_wake_addr = 0x400000a4 + 0x400000a8 esp_rom_get_rtc_wake_addr = 0x400000a8 + 0x400000ac send_packet = 0x400000ac + 0x400000b0 recv_packet = 0x400000b0 + 0x400000b4 GetUartDevice = 0x400000b4 + 0x400000b8 UartDwnLdProc = 0x400000b8 + 0x400000bc GetSecurityInfoProc = 0x400000bc + 0x400000c0 Uart_Init = 0x400000c0 + 0x400000c4 ets_set_user_start = 0x400000c4 + 0x4004fffc ets_rom_layout_p = 0x4004fffc + 0x4087fff8 ets_ops_table_ptr = 0x4087fff8 + 0x4087fffc g_saved_pc = 0x4087fffc + 0x400000c8 mz_adler32 = 0x400000c8 + 0x400000cc mz_free = 0x400000cc + 0x400000d0 tdefl_compress = 0x400000d0 + 0x400000d4 tdefl_compress_buffer = 0x400000d4 + 0x400000d8 tdefl_compress_mem_to_heap = 0x400000d8 + 0x400000dc tdefl_compress_mem_to_mem = 0x400000dc + 0x400000e0 tdefl_compress_mem_to_output = 0x400000e0 + 0x400000e4 tdefl_get_adler32 = 0x400000e4 + 0x400000e8 tdefl_get_prev_return_status = 0x400000e8 + 0x400000ec tdefl_init = 0x400000ec + 0x400000f0 tdefl_write_image_to_png_file_in_memory = 0x400000f0 + 0x400000f4 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f4 + 0x400000f8 tinfl_decompress = 0x400000f8 + 0x400000fc tinfl_decompress_mem_to_callback = 0x400000fc + 0x40000100 tinfl_decompress_mem_to_heap = 0x40000100 + 0x40000104 tinfl_decompress_mem_to_mem = 0x40000104 + 0x40000108 jd_prepare = 0x40000108 + 0x4000010c jd_decomp = 0x4000010c + 0x40000110 esp_rom_spiflash_wait_idle = 0x40000110 + 0x40000114 esp_rom_spiflash_write_encrypted = 0x40000114 + 0x40000118 esp_rom_spiflash_write_encrypted_dest = 0x40000118 + 0x4000011c esp_rom_spiflash_write_encrypted_enable = 0x4000011c + 0x40000120 esp_rom_spiflash_write_encrypted_disable = 0x40000120 + 0x40000124 esp_rom_spiflash_erase_chip = 0x40000124 + 0x40000128 _esp_rom_spiflash_erase_sector = 0x40000128 + 0x4000012c _esp_rom_spiflash_erase_block = 0x4000012c + 0x40000130 _esp_rom_spiflash_write = 0x40000130 + 0x40000134 _esp_rom_spiflash_read = 0x40000134 + 0x40000138 _esp_rom_spiflash_unlock = 0x40000138 + 0x4000013c _SPIEraseArea = 0x4000013c + 0x40000140 _SPI_write_enable = 0x40000140 + 0x40000144 esp_rom_spiflash_erase_sector = 0x40000144 + 0x40000148 esp_rom_spiflash_erase_block = 0x40000148 + 0x4000014c esp_rom_spiflash_write = 0x4000014c + 0x40000150 esp_rom_spiflash_read = 0x40000150 + 0x40000154 esp_rom_spiflash_unlock = 0x40000154 + 0x40000158 SPIEraseArea = 0x40000158 + 0x4000015c SPI_write_enable = 0x4000015c + 0x40000160 esp_rom_spiflash_config_param = 0x40000160 + 0x40000164 esp_rom_spiflash_read_user_cmd = 0x40000164 + 0x40000168 esp_rom_spiflash_select_qio_pins = 0x40000168 + 0x4000016c esp_rom_spi_flash_auto_sus_res = 0x4000016c + 0x40000170 esp_rom_spi_flash_send_resume = 0x40000170 + 0x40000174 esp_rom_spi_flash_update_id = 0x40000174 + 0x40000178 esp_rom_spiflash_config_clk = 0x40000178 + 0x4000017c esp_rom_spiflash_config_readmode = 0x4000017c + 0x40000180 esp_rom_spiflash_read_status = 0x40000180 + 0x40000184 esp_rom_spiflash_read_statushigh = 0x40000184 + 0x40000188 esp_rom_spiflash_write_status = 0x40000188 + 0x4000018c spi_cache_mode_switch = 0x4000018c + 0x40000190 spi_common_set_dummy_output = 0x40000190 + 0x40000194 spi_common_set_flash_cs_timing = 0x40000194 + 0x40000198 esp_rom_spi_set_address_bit_len = 0x40000198 + 0x4000019c SPILock = 0x4000019c + 0x400001a0 SPIMasterReadModeCnfig = 0x400001a0 + 0x400001a4 SPI_Common_Command = 0x400001a4 + 0x400001a8 SPI_WakeUp = 0x400001a8 + 0x400001ac SPI_block_erase = 0x400001ac + 0x400001b0 SPI_chip_erase = 0x400001b0 + 0x400001b4 SPI_init = 0x400001b4 + 0x400001b8 SPI_page_program = 0x400001b8 + 0x400001bc SPI_read_data = 0x400001bc + 0x400001c0 SPI_sector_erase = 0x400001c0 + 0x400001c4 SelectSpiFunction = 0x400001c4 + 0x400001c8 SetSpiDrvs = 0x400001c8 + 0x400001cc Wait_SPI_Idle = 0x400001cc + 0x400001d0 spi_dummy_len_fix = 0x400001d0 + 0x400001d4 Disable_QMode = 0x400001d4 + 0x400001d8 Enable_QMode = 0x400001d8 + 0x400001dc spi_flash_attach = 0x400001dc + 0x400001e0 spi_flash_get_chip_size = 0x400001e0 + 0x400001e4 spi_flash_guard_set = 0x400001e4 + 0x400001e8 spi_flash_guard_get = 0x400001e8 + 0x400001ec spi_flash_read_encrypted = 0x400001ec + 0x4087fff0 rom_spiflash_legacy_funcs = 0x4087fff0 + 0x4087ffec rom_spiflash_legacy_data = 0x4087ffec + 0x4087fff4 g_flash_guard_ops = 0x4087fff4 + 0x40000278 esp_rom_spiflash_write_disable = 0x40000278 + 0x40000628 Cache_Get_ICache_Line_Size = 0x40000628 + 0x4000062c Cache_Get_Mode = 0x4000062c + 0x40000630 Cache_Address_Through_Cache = 0x40000630 + 0x40000634 ROM_Boot_Cache_Init = 0x40000634 + 0x40000638 MMU_Set_Page_Mode = 0x40000638 + 0x4000063c MMU_Get_Page_Mode = 0x4000063c + 0x40000640 Cache_Invalidate_ICache_Items = 0x40000640 + 0x40000644 Cache_Op_Addr = 0x40000644 + 0x40000648 Cache_Invalidate_Addr = 0x40000648 + 0x4000064c Cache_Invalidate_ICache_All = 0x4000064c + 0x40000650 Cache_Mask_All = 0x40000650 + 0x40000654 Cache_UnMask_Dram0 = 0x40000654 + 0x40000658 Cache_Suspend_ICache_Autoload = 0x40000658 + 0x4000065c Cache_Resume_ICache_Autoload = 0x4000065c + 0x40000660 Cache_Start_ICache_Preload = 0x40000660 + 0x40000664 Cache_ICache_Preload_Done = 0x40000664 + 0x40000668 Cache_End_ICache_Preload = 0x40000668 + 0x4000066c Cache_Config_ICache_Autoload = 0x4000066c + 0x40000670 Cache_Enable_ICache_Autoload = 0x40000670 + 0x40000674 Cache_Disable_ICache_Autoload = 0x40000674 + 0x40000678 Cache_Enable_ICache_PreLock = 0x40000678 + 0x4000067c Cache_Disable_ICache_PreLock = 0x4000067c + 0x40000680 Cache_Lock_ICache_Items = 0x40000680 + 0x40000684 Cache_Unlock_ICache_Items = 0x40000684 + 0x40000688 Cache_Lock_Addr = 0x40000688 + 0x4000068c Cache_Unlock_Addr = 0x4000068c + 0x40000690 Cache_Disable_ICache = 0x40000690 + 0x40000694 Cache_Enable_ICache = 0x40000694 + 0x40000698 Cache_Suspend_ICache = 0x40000698 + 0x4000069c Cache_Resume_ICache = 0x4000069c + 0x400006a0 Cache_Freeze_ICache_Enable = 0x400006a0 + 0x400006a4 Cache_Freeze_ICache_Disable = 0x400006a4 + 0x400006a8 Cache_Set_IDROM_MMU_Size = 0x400006a8 + 0x400006ac Cache_Get_IROM_MMU_End = 0x400006ac + 0x400006b0 Cache_Get_DROM_MMU_End = 0x400006b0 + 0x400006b4 Cache_MMU_Init = 0x400006b4 + 0x400006b8 Cache_MSPI_MMU_Set = 0x400006b8 + 0x400006bc Cache_Travel_Tag_Memory = 0x400006bc + 0x400006c0 Cache_Get_Virtual_Addr = 0x400006c0 + 0x4087ffcc rom_cache_op_cb = 0x4087ffcc + 0x4087ffc8 rom_cache_internal_table_ptr = 0x4087ffc8 + 0x400006c4 ets_clk_get_xtal_freq = 0x400006c4 + 0x400006c8 ets_clk_get_cpu_freq = 0x400006c8 + 0x400006cc ets_clk_apb_wait_ready = 0x400006cc + 0x400006d0 ets_clk_mspi_apb_wait_ready = 0x400006d0 + 0x400006d4 gpio_input_get = 0x400006d4 + 0x400006d8 gpio_matrix_in = 0x400006d8 + 0x400006dc gpio_matrix_out = 0x400006dc + 0x400006e8 gpio_output_set = 0x400006e8 + 0x400006ec gpio_pad_hold = 0x400006ec + 0x400006f0 gpio_pad_input_disable = 0x400006f0 + 0x400006f4 gpio_pad_input_enable = 0x400006f4 + 0x400006f8 gpio_pad_pulldown = 0x400006f8 + 0x400006fc gpio_pad_pullup = 0x400006fc + 0x40000700 gpio_pad_select_gpio = 0x40000700 + 0x40000704 gpio_pad_set_drv = 0x40000704 + 0x40000708 gpio_pad_unhold = 0x40000708 + 0x4000070c gpio_pin_wakeup_disable = 0x4000070c + 0x40000710 gpio_pin_wakeup_enable = 0x40000710 + 0x40000714 gpio_bypass_matrix_in = 0x40000714 + 0x40000718 esprv_intc_int_set_priority = 0x40000718 + 0x4000071c esprv_intc_int_set_threshold = 0x4000071c + 0x40000720 esprv_intc_int_enable = 0x40000720 + 0x40000724 esprv_intc_int_disable = 0x40000724 + 0x40000728 esprv_intc_int_set_type = 0x40000728 + [!provide] PROVIDE (intr_handler_set = 0x4000072c) + 0x40000730 intr_matrix_set = 0x40000730 + 0x40000734 ets_intr_lock = 0x40000734 + 0x40000738 ets_intr_unlock = 0x40000738 + 0x4000073c ets_isr_attach = 0x4000073c + 0x40000740 ets_isr_mask = 0x40000740 + 0x40000744 ets_isr_unmask = 0x40000744 + 0x40000748 md5_vector = 0x40000748 + 0x4000074c MD5Init = 0x4000074c + 0x40000750 MD5Update = 0x40000750 + 0x40000754 MD5Final = 0x40000754 + 0x40000758 crc32_le = 0x40000758 + 0x4000075c crc16_le = 0x4000075c + 0x40000760 crc8_le = 0x40000760 + 0x40000764 crc32_be = 0x40000764 + 0x40000768 crc16_be = 0x40000768 + 0x4000076c crc8_be = 0x4000076c + 0x40000770 esp_crc8 = 0x40000770 + 0x40000774 ets_sha_enable = 0x40000774 + 0x40000778 ets_sha_disable = 0x40000778 + 0x4000077c ets_sha_get_state = 0x4000077c + 0x40000780 ets_sha_init = 0x40000780 + 0x40000784 ets_sha_process = 0x40000784 + 0x40000788 ets_sha_starts = 0x40000788 + 0x4000078c ets_sha_update = 0x4000078c + 0x40000790 ets_sha_finish = 0x40000790 + 0x40000794 ets_sha_clone = 0x40000794 + 0x40000798 ets_hmac_enable = 0x40000798 + 0x4000079c ets_hmac_disable = 0x4000079c + 0x400007a0 ets_hmac_calculate_message = 0x400007a0 + 0x400007a4 ets_hmac_calculate_downstream = 0x400007a4 + 0x400007a8 ets_hmac_invalidate_downstream = 0x400007a8 + 0x400007ac ets_jtag_enable_temporarily = 0x400007ac + 0x400007b0 ets_aes_enable = 0x400007b0 + 0x400007b4 ets_aes_disable = 0x400007b4 + 0x400007b8 ets_aes_setkey = 0x400007b8 + 0x400007bc ets_aes_block = 0x400007bc + 0x400007c0 ets_aes_setkey_dec = 0x400007c0 + 0x400007c4 ets_aes_setkey_enc = 0x400007c4 + 0x400007c8 ets_bigint_enable = 0x400007c8 + 0x400007cc ets_bigint_disable = 0x400007cc + 0x400007d0 ets_bigint_multiply = 0x400007d0 + 0x400007d4 ets_bigint_modmult = 0x400007d4 + 0x400007d8 ets_bigint_modexp = 0x400007d8 + 0x400007dc ets_bigint_wait_finish = 0x400007dc + 0x400007e0 ets_bigint_getz = 0x400007e0 + 0x400007e4 ets_ds_enable = 0x400007e4 + 0x400007e8 ets_ds_disable = 0x400007e8 + 0x400007ec ets_ds_start_sign = 0x400007ec + 0x400007f0 ets_ds_is_busy = 0x400007f0 + 0x400007f4 ets_ds_finish_sign = 0x400007f4 + 0x400007f8 ets_ds_encrypt_params = 0x400007f8 + 0x400007fc ets_mgf1_sha256 = 0x400007fc + 0x4004fff8 crc32_le_table_ptr = 0x4004fff8 + 0x4004fff4 crc16_le_table_ptr = 0x4004fff4 + 0x4004fff0 crc8_le_table_ptr = 0x4004fff0 + 0x4004ffec crc32_be_table_ptr = 0x4004ffec + 0x4004ffe8 crc16_be_table_ptr = 0x4004ffe8 + 0x4004ffe4 crc8_be_table_ptr = 0x4004ffe4 + 0x40000800 ets_efuse_read = 0x40000800 + 0x40000804 ets_efuse_program = 0x40000804 + 0x40000808 ets_efuse_clear_program_registers = 0x40000808 + 0x4000080c ets_efuse_write_key = 0x4000080c + 0x40000810 ets_efuse_get_read_register_address = 0x40000810 + 0x40000814 ets_efuse_get_key_purpose = 0x40000814 + 0x40000818 ets_efuse_key_block_unused = 0x40000818 + 0x4000081c ets_efuse_find_unused_key_block = 0x4000081c + 0x40000820 ets_efuse_rs_calculate = 0x40000820 + 0x40000824 ets_efuse_count_unused_key_blocks = 0x40000824 + 0x40000828 ets_efuse_secure_boot_enabled = 0x40000828 + 0x4000082c ets_efuse_secure_boot_aggressive_revoke_enabled = 0x4000082c + 0x40000830 ets_efuse_cache_encryption_enabled = 0x40000830 + 0x40000834 ets_efuse_download_modes_disabled = 0x40000834 + 0x40000838 ets_efuse_find_purpose = 0x40000838 + 0x4000083c ets_efuse_force_send_resume = 0x4000083c + 0x40000840 ets_efuse_get_flash_delay_us = 0x40000840 + 0x40000844 ets_efuse_get_mac = 0x40000844 + 0x40000848 ets_efuse_get_uart_print_control = 0x40000848 + 0x4000084c ets_efuse_direct_boot_mode_disabled = 0x4000084c + 0x40000850 ets_efuse_security_download_modes_enabled = 0x40000850 + 0x40000854 ets_efuse_set_timing = 0x40000854 + 0x40000858 ets_efuse_jtag_disabled = 0x40000858 + 0x4000085c ets_efuse_usb_print_is_disabled = 0x4000085c + 0x40000860 ets_efuse_usb_download_mode_disabled = 0x40000860 + 0x40000864 ets_efuse_usb_device_disabled = 0x40000864 + 0x40000868 ets_efuse_secure_boot_fast_wake_enabled = 0x40000868 + 0x4000086c ets_emsa_pss_verify = 0x4000086c + 0x40000870 ets_rsa_pss_verify = 0x40000870 + 0x40000874 ets_secure_boot_verify_bootloader_with_keys = 0x40000874 + 0x40000878 ets_secure_boot_verify_signature = 0x40000878 + 0x4000087c ets_secure_boot_read_key_digests = 0x4000087c + 0x40000880 ets_secure_boot_revoke_public_key_digest = 0x40000880 + 0x40000a80 usb_serial_device_rx_one_char = 0x40000a80 + 0x40000a84 usb_serial_device_rx_one_char_block = 0x40000a84 + 0x40000a88 usb_serial_device_tx_flush = 0x40000a88 + 0x40000a8c usb_serial_device_tx_one_char = 0x40000a8c + 0x40000a90 lldesc_build_chain = 0x40000a90 + 0x40000a94 sip_after_tx_complete = 0x40000a94 + 0x40000a98 sip_alloc_to_host_evt = 0x40000a98 + 0x40000a9c sip_download_begin = 0x40000a9c + 0x40000aa0 sip_get_ptr = 0x40000aa0 + 0x40000aa4 sip_get_state = 0x40000aa4 + 0x40000aa8 sip_init_attach = 0x40000aa8 + 0x40000aac sip_install_rx_ctrl_cb = 0x40000aac + 0x40000ab0 sip_install_rx_data_cb = 0x40000ab0 + 0x40000ab4 sip_is_active = 0x40000ab4 + 0x40000ab8 sip_post_init = 0x40000ab8 + 0x40000abc sip_reclaim_from_host_cmd = 0x40000abc + 0x40000ac0 sip_reclaim_tx_data_pkt = 0x40000ac0 + 0x40000ac4 sip_send = 0x40000ac4 + 0x40000ac8 sip_to_host_chain_append = 0x40000ac8 + 0x40000acc sip_to_host_evt_send_done = 0x40000acc + 0x40000ad0 slc_add_credits = 0x40000ad0 + 0x40000ad4 slc_enable = 0x40000ad4 + 0x40000ad8 slc_from_host_chain_fetch = 0x40000ad8 + 0x40000adc slc_from_host_chain_recycle = 0x40000adc + 0x40000ae0 slc_has_pkt_to_host = 0x40000ae0 + 0x40000ae4 slc_init_attach = 0x40000ae4 + 0x40000ae8 slc_init_credit = 0x40000ae8 + 0x40000aec slc_reattach = 0x40000aec + 0x40000af0 slc_send_to_host_chain = 0x40000af0 + 0x40000af4 slc_set_host_io_max_window = 0x40000af4 + 0x40000af8 slc_to_host_chain_recycle = 0x40000af8 + 0x40000758 PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + 0x40000704 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + [!provide] PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char2) + [!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) + 0x40000074 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x40000078 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_putc = ets_write_char_uart) + 0x4000074c PROVIDE (esp_rom_md5_init = MD5Init) + 0x40000750 PROVIDE (esp_rom_md5_update = MD5Update) + 0x40000754 PROVIDE (esp_rom_md5_final = MD5Final) + 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) + [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40000028 PROVIDE (esp_rom_printf = ets_printf) + 0x40000034 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x40000040 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40000044 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40000048 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + 0x400001d0 PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x400009f4 __adddf3 = 0x400009f4 + 0x400009f8 __addsf3 = 0x400009f8 + 0x400009fc __eqdf2 = 0x400009fc + 0x40000a00 __eqsf2 = 0x40000a00 + 0x40000a04 __extendsfdf2 = 0x40000a04 + 0x40000a08 __fixdfdi = 0x40000a08 + 0x40000a0c __fixdfsi = 0x40000a0c + 0x40000a10 __fixsfdi = 0x40000a10 + 0x40000a14 __fixsfsi = 0x40000a14 + 0x40000a18 __fixunsdfsi = 0x40000a18 + 0x40000a1c __fixunssfdi = 0x40000a1c + 0x40000a20 __fixunssfsi = 0x40000a20 + 0x40000a24 __floatdidf = 0x40000a24 + 0x40000a28 __floatdisf = 0x40000a28 + 0x40000a2c __floatsidf = 0x40000a2c + 0x40000a30 __floatsisf = 0x40000a30 + 0x40000a34 __floatundidf = 0x40000a34 + 0x40000a38 __floatundisf = 0x40000a38 + 0x40000a3c __floatunsidf = 0x40000a3c + 0x40000a40 __floatunsisf = 0x40000a40 + 0x40000a44 __gedf2 = 0x40000a44 + 0x40000a48 __gesf2 = 0x40000a48 + 0x40000a4c __gtdf2 = 0x40000a4c + 0x40000a50 __gtsf2 = 0x40000a50 + 0x40000a54 __ledf2 = 0x40000a54 + 0x40000a58 __lesf2 = 0x40000a58 + 0x40000a5c __ltdf2 = 0x40000a5c + 0x40000a60 __ltsf2 = 0x40000a60 + 0x40000a64 __muldf3 = 0x40000a64 + 0x40000a68 __mulsf3 = 0x40000a68 + 0x40000a6c __nedf2 = 0x40000a6c + 0x40000a70 __nesf2 = 0x40000a70 + 0x40000a74 __subdf3 = 0x40000a74 + 0x40000a78 __subsf3 = 0x40000a78 + 0x40000a7c __truncdfsf2 = 0x40000a7c + 0x40000884 __absvdi2 = 0x40000884 + 0x40000888 __absvsi2 = 0x40000888 + 0x40000894 __addvdi3 = 0x40000894 + 0x40000898 __addvsi3 = 0x40000898 + 0x4000089c __ashldi3 = 0x4000089c + 0x400008a0 __ashrdi3 = 0x400008a0 + 0x400008a4 __bswapdi2 = 0x400008a4 + 0x400008a8 __bswapsi2 = 0x400008a8 + 0x400008ac __clear_cache = 0x400008ac + 0x400008b0 __clrsbdi2 = 0x400008b0 + 0x400008b4 __clrsbsi2 = 0x400008b4 + 0x400008b8 __clzdi2 = 0x400008b8 + 0x400008bc __clzsi2 = 0x400008bc + 0x400008c0 __cmpdi2 = 0x400008c0 + 0x400008c4 __ctzdi2 = 0x400008c4 + 0x400008c8 __ctzsi2 = 0x400008c8 + 0x400008cc __divdc3 = 0x400008cc + 0x400008d0 __divdf3 = 0x400008d0 + 0x400008d4 __divdi3 = 0x400008d4 + 0x400008d8 __divsc3 = 0x400008d8 + 0x400008dc __divsf3 = 0x400008dc + 0x400008e0 __divsi3 = 0x400008e0 + 0x400008f0 __ffsdi2 = 0x400008f0 + 0x400008f4 __ffssi2 = 0x400008f4 + 0x40000934 __gcc_bcmp = 0x40000934 + 0x40000950 __lshrdi3 = 0x40000950 + 0x4000095c __moddi3 = 0x4000095c + 0x40000960 __modsi3 = 0x40000960 + 0x40000964 __muldc3 = 0x40000964 + 0x4000096c __muldi3 = 0x4000096c + 0x40000970 __mulsc3 = 0x40000970 + 0x40000978 __mulsi3 = 0x40000978 + 0x4000097c __mulvdi3 = 0x4000097c + 0x40000980 __mulvsi3 = 0x40000980 + 0x40000988 __negdf2 = 0x40000988 + 0x4000098c __negdi2 = 0x4000098c + 0x40000990 __negsf2 = 0x40000990 + 0x40000994 __negvdi2 = 0x40000994 + 0x40000998 __negvsi2 = 0x40000998 + 0x400009a0 __paritysi2 = 0x400009a0 + 0x400009a4 __popcountdi2 = 0x400009a4 + 0x400009a8 __popcountsi2 = 0x400009a8 + 0x400009ac __powidf2 = 0x400009ac + 0x400009b0 __powisf2 = 0x400009b0 + 0x400009bc __subvdi3 = 0x400009bc + 0x400009c0 __subvsi3 = 0x400009c0 + 0x400009c8 __ucmpdi2 = 0x400009c8 + 0x400009cc __udivdi3 = 0x400009cc + 0x400009d0 __udivmoddi4 = 0x400009d0 + 0x400009d4 __udivsi3 = 0x400009d4 + 0x400009d8 __udiv_w_sdiv = 0x400009d8 + 0x400009dc __umoddi3 = 0x400009dc + 0x400009e0 __umodsi3 = 0x400009e0 + 0x400009e4 __unorddf2 = 0x400009e4 + 0x400009e8 __unordsf2 = 0x400009e8 + 0x400009ec __extenddftf2 = 0x400009ec + 0x400009f0 __trunctfdf2 = 0x400009f0 + 0x4000039c wdt_hal_config_stage = 0x4000039c + 0x400003a0 wdt_hal_write_protect_disable = 0x400003a0 + 0x400003a4 wdt_hal_write_protect_enable = 0x400003a4 + 0x400003a8 wdt_hal_enable = 0x400003a8 + 0x400003ac wdt_hal_disable = 0x400003ac + 0x400003b0 wdt_hal_handle_intr = 0x400003b0 + 0x400003b4 wdt_hal_feed = 0x400003b4 + 0x400003b8 wdt_hal_set_flashboot_en = 0x400003b8 + 0x400003bc wdt_hal_is_enabled = 0x400003bc + 0x400003c8 systimer_hal_set_tick_rate_ops = 0x400003c8 + 0x400003cc systimer_hal_get_counter_value = 0x400003cc + 0x400003d0 systimer_hal_get_time = 0x400003d0 + 0x400003d4 systimer_hal_set_alarm_target = 0x400003d4 + 0x400003d8 systimer_hal_set_alarm_period = 0x400003d8 + 0x400003dc systimer_hal_get_alarm_value = 0x400003dc + 0x400003e0 systimer_hal_enable_alarm_int = 0x400003e0 + 0x400003e4 systimer_hal_on_apb_freq_update = 0x400003e4 + 0x400003e8 systimer_hal_counter_value_advance = 0x400003e8 + 0x400003ec systimer_hal_enable_counter = 0x400003ec + 0x400003f0 systimer_hal_select_alarm_mode = 0x400003f0 + 0x400003f4 systimer_hal_connect_alarm_counter = 0x400003f4 + 0x400003f8 systimer_hal_counter_can_stall_by_cpu = 0x400003f8 + 0x40000010 _rom_chip_id = 0x40000010 + 0x40000014 _rom_eco_version = 0x40000014 + 0x400004a4 esp_rom_newlib_init_common_mutexes = 0x400004a4 + 0x400004a8 memset = 0x400004a8 + 0x400004ac memcpy = 0x400004ac + 0x400004b0 memmove = 0x400004b0 + 0x400004b4 memcmp = 0x400004b4 + 0x400004b8 strcpy = 0x400004b8 + 0x400004bc strncpy = 0x400004bc + 0x400004c0 strcmp = 0x400004c0 + 0x400004c4 strncmp = 0x400004c4 + 0x400004c8 strlen = 0x400004c8 + 0x400004cc strstr = 0x400004cc + 0x400004d0 bzero = 0x400004d0 + 0x400004d4 _isatty_r = 0x400004d4 + 0x400004d8 sbrk = 0x400004d8 + 0x400004dc isalnum = 0x400004dc + 0x400004e0 isalpha = 0x400004e0 + 0x400004e4 isascii = 0x400004e4 + 0x400004e8 isblank = 0x400004e8 + 0x400004ec iscntrl = 0x400004ec + 0x400004f0 isdigit = 0x400004f0 + 0x400004f4 islower = 0x400004f4 + 0x400004f8 isgraph = 0x400004f8 + 0x400004fc isprint = 0x400004fc + 0x40000500 ispunct = 0x40000500 + 0x40000504 isspace = 0x40000504 + 0x40000508 isupper = 0x40000508 + 0x4000050c toupper = 0x4000050c + 0x40000510 tolower = 0x40000510 + 0x40000514 toascii = 0x40000514 + 0x40000518 memccpy = 0x40000518 + 0x4000051c memchr = 0x4000051c + 0x40000520 memrchr = 0x40000520 + 0x40000524 strcasecmp = 0x40000524 + 0x40000528 strcasestr = 0x40000528 + 0x4000052c strcat = 0x4000052c + 0x40000530 strdup = 0x40000530 + 0x40000534 strchr = 0x40000534 + 0x40000538 strcspn = 0x40000538 + 0x4000053c strcoll = 0x4000053c + 0x40000540 strlcat = 0x40000540 + 0x40000544 strlcpy = 0x40000544 + 0x40000548 strlwr = 0x40000548 + 0x4000054c strncasecmp = 0x4000054c + 0x40000550 strncat = 0x40000550 + 0x40000554 strndup = 0x40000554 + 0x40000558 strnlen = 0x40000558 + 0x4000055c strrchr = 0x4000055c + 0x40000560 strsep = 0x40000560 + 0x40000564 strspn = 0x40000564 + 0x40000568 strtok_r = 0x40000568 + 0x4000056c strupr = 0x4000056c + 0x40000570 longjmp = 0x40000570 + 0x40000574 setjmp = 0x40000574 + 0x40000578 abs = 0x40000578 + 0x4000057c div = 0x4000057c + 0x40000580 labs = 0x40000580 + 0x40000584 ldiv = 0x40000584 + 0x40000588 qsort = 0x40000588 + 0x4000058c rand_r = 0x4000058c + 0x40000590 rand = 0x40000590 + 0x40000594 srand = 0x40000594 + 0x40000598 utoa = 0x40000598 + 0x4000059c itoa = 0x4000059c + 0x400005a0 atoi = 0x400005a0 + 0x400005a4 atol = 0x400005a4 + 0x400005a8 strtol = 0x400005a8 + 0x400005ac strtoul = 0x400005ac + 0x400005b0 fflush = 0x400005b0 + 0x400005b4 _fflush_r = 0x400005b4 + 0x400005b8 _fwalk = 0x400005b8 + 0x400005bc _fwalk_reent = 0x400005bc + 0x400005c0 __smakebuf_r = 0x400005c0 + 0x400005c4 __swhatbuf_r = 0x400005c4 + 0x400005c8 __swbuf_r = 0x400005c8 + 0x400005cc __swbuf = 0x400005cc + 0x400005d0 __swsetup_r = 0x400005d0 + 0x4087ffd4 syscall_table_ptr = 0x4087ffd4 + 0x4087ffd0 _global_impure_ptr = 0x4087ffd0 + 0x60000000 PROVIDE (UART0 = 0x60000000) + [!provide] PROVIDE (UART1 = 0x60001000) + 0x60002000 PROVIDE (SPIMEM0 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM1 = 0x60003000) + [!provide] PROVIDE (I2C0 = 0x60004000) + [!provide] PROVIDE (UHCI0 = 0x60005000) + [!provide] PROVIDE (RMT = 0x60006000) + [!provide] PROVIDE (RMTMEM = 0x60006400) + [!provide] PROVIDE (LEDC = 0x60007000) + 0x60008000 PROVIDE (TIMERG0 = 0x60008000) + 0x60009000 PROVIDE (TIMERG1 = 0x60009000) + [!provide] PROVIDE (SYSTIMER = 0x6000a000) + [!provide] PROVIDE (TWAI0 = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000c000) + [!provide] PROVIDE (TWAI1 = 0x6000d000) + [!provide] PROVIDE (APB_SARADC = 0x6000e000) + [!provide] PROVIDE (USB_SERIAL_JTAG = 0x6000f000) + [!provide] PROVIDE (INTMTX = 0x60010000) + [!provide] PROVIDE (ATOMIC_LOCKER = 0x60011000) + [!provide] PROVIDE (PCNT = 0x60012000) + [!provide] PROVIDE (SOC_ETM = 0x60013000) + [!provide] PROVIDE (MCPWM0 = 0x60014000) + [!provide] PROVIDE (PARL_IO = 0x60015000) + [!provide] PROVIDE (HINF = 0x60016000) + [!provide] PROVIDE (SLC = 0x60017000) + [!provide] PROVIDE (HOST = 0x60018000) + [!provide] PROVIDE (PVT_MONITOR = 0x60019000) + [!provide] PROVIDE (GDMA = 0x60080000) + [!provide] PROVIDE (GPSPI2 = 0x60081000) + [!provide] PROVIDE (AES = 0x60088000) + [!provide] PROVIDE (SHA = 0x60089000) + [!provide] PROVIDE (RSA = 0x6008a000) + [!provide] PROVIDE (ECC = 0x6008b000) + [!provide] PROVIDE (DS = 0x6008c000) + [!provide] PROVIDE (HMAC = 0x6008d000) + [!provide] PROVIDE (IO_MUX = 0x60090000) + [!provide] PROVIDE (GPIO = 0x60091000) + [!provide] PROVIDE (GPIO_EXT = 0x60091f00) + [!provide] PROVIDE (SDM = 0x60091f00) + [!provide] PROVIDE (GLITCH_FILTER = 0x60091f30) + [!provide] PROVIDE (GPIO_ETM = 0x60091f60) + [!provide] PROVIDE (MEM_MONITOR = 0x60092000) + [!provide] PROVIDE (PAU = 0x60093000) + [!provide] PROVIDE (HP_SYSTEM = 0x60095000) + 0x60096000 PROVIDE (PCR = 0x60096000) + [!provide] PROVIDE (TEE = 0x60098000) + [!provide] PROVIDE (HP_APM = 0x60099000) + [!provide] PROVIDE (IEEE802154 = 0x600a3000) + 0x600a9800 PROVIDE (MODEM_SYSCON = 0x600a9800) + 0x600af000 PROVIDE (MODEM_LPCON = 0x600af000) + 0x600b0000 PROVIDE (PMU = 0x600b0000) + 0x600b0400 PROVIDE (LP_CLKRST = 0x600b0400) + 0x600b0800 PROVIDE (EFUSE = 0x600b0800) + 0x600b0c00 PROVIDE (LP_TIMER = 0x600b0c00) + [!provide] PROVIDE (LP_AON = 0x600b1000) + 0x600b1400 PROVIDE (LP_UART = 0x600b1400) + [!provide] PROVIDE (LP_I2C = 0x600b1800) + 0x600b1c00 PROVIDE (LP_WDT = 0x600b1c00) + [!provide] PROVIDE (LP_IO = 0x600b2000) + [!provide] PROVIDE (LP_I2C_ANA_MST = 0x600b2400) + [!provide] PROVIDE (LPPERI = 0x600b2800) + 0x600b2c00 PROVIDE (LP_ANA_PERI = 0x600b2c00) + [!provide] PROVIDE (LP_APM = 0x600b3800) + [!provide] PROVIDE (OTP_DEBUG = 0x600b3c00) + 0x4087c610 bootloader_usable_dram_end = 0x4087c610 + 0x00002000 bootloader_stack_overhead = 0x2000 + 0x00005000 bootloader_dram_seg_len = 0x5000 + 0x00007000 bootloader_iram_loader_seg_len = 0x7000 + 0x00002500 bootloader_iram_seg_len = 0x2500 + 0x4087a610 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead) + 0x40875610 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len) + 0x4086e610 bootloader_iram_loader_seg_start = (bootloader_dram_seg_start - bootloader_iram_loader_seg_len) + 0x4086c110 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len) + 0x00000001 ASSERT ((bootloader_iram_loader_seg_start == 0x4086e610), bootloader_iram_loader_seg_start inconsistent with SRAM_DRAM_END) + +.iram_loader.text + 0x4086e610 0x304c + 0x4086e610 . = ALIGN (0x10) + 0x4086e610 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0 0x4086e610 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4086e610 esp_flash_encryption_enabled + .iram1.5 0x4086e614 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.1 0x4086e664 0x1fa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086e664 bootloader_flash_execute_command_common + .iram1.2 0x4086e85e 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086e85e bootloader_execute_flash_command + .iram1.0 0x4086e86c 0x15a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086e86c bootloader_flash_unlock + .iram1.3 0x4086e9c6 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086e9c6 bootloader_flash_read_sfdp + .iram1.4 0x4086ea06 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086ea06 bootloader_read_flash_id + .iram1.6 0x4086ea3a 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086ea3a bootloader_flash_xmc_startup + .iram1.0 0x4086eaf8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + 0x4086eaf8 bootloader_flash_cs_timing_config + .iram1.2 0x4086eb18 0x56 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + 0x4086eb18 bootloader_configure_spi_pins + .iram1.0 0x4086eb6e 0xc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .iram1.3 0x4086ec36 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 0x4086ec36 esp_rom_regi2c_write + 0x4086ec36 regi2c_write_impl + .iram1.4 0x4086ec86 0xdc esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 0x4086ec86 regi2c_write_mask_impl + 0x4086ec86 esp_rom_regi2c_write_mask + .iram1.0 0x4086ed62 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086ed62 efuse_hal_chip_revision + .iram1.1 0x4086ed80 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086ed80 efuse_hal_blk_version + .iram1.2 0x4086ed9e 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086ed9e efuse_hal_get_disable_wafer_version_major + .iram1.3 0x4086edac 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086edac efuse_hal_get_disable_blk_version_major + .iram1.4 0x4086edbc 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086edbc efuse_hal_flash_encryption_enabled + .iram1.0 0x4086edda 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086edda efuse_hal_get_major_chip_version + .iram1.1 0x4086edea 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4086edea efuse_hal_get_minor_chip_version + .iram1.2 0x4086edfa 0x28 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + 0x4086edfa lp_timer_hal_get_cycle_count + *liblog.a:(.literal .text .literal.* .text.*) + .text.esp_log_early_timestamp + 0x4086ee22 0x26 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x4086ee22 esp_log_early_timestamp + 0x4086ee22 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.*) + .text.bootloader_common_ota_select_crc + 0x4086ee48 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086ee48 bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_invalid + 0x4086ee56 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086ee56 bootloader_common_ota_select_invalid + .text.bootloader_common_ota_select_valid + 0x4086ee6c 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086ee6c bootloader_common_ota_select_valid + .text.bootloader_common_check_efuse_blk_validity + 0x4086ee96 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086ee96 bootloader_common_check_efuse_blk_validity + .text.bootloader_common_check_chip_validity + 0x4086ef4a 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086ef4a bootloader_common_check_chip_validity + .text.bootloader_common_select_otadata + 0x4086f062 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086f062 bootloader_common_select_otadata + .text.bootloader_common_get_active_otadata + 0x4086f0a0 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x4086f0a0 bootloader_common_get_active_otadata + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + .text.spi_to_esp_err + 0x4086f0ce 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x4086f0f2 0x6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f0f2 bootloader_mmap_get_free_pages + .text.bootloader_mmap + 0x4086f0f8 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f0f8 bootloader_mmap + .text.bootloader_munmap + 0x4086f1c0 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f1c0 bootloader_munmap + .text.bootloader_flash_read + 0x4086f1f2 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f1f2 bootloader_flash_read + .text.bootloader_flash_erase_sector + 0x4086f32a 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f32a bootloader_flash_erase_sector + .text.bootloader_flash_write + 0x4086f33c 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f33c bootloader_flash_write + .text.bootloader_enable_wp + 0x4086f40c 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f40c bootloader_enable_wp + .text.bootloader_flash_get_spi_mode + 0x4086f418 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4086f418 bootloader_flash_get_spi_mode + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + .text.bootloader_fill_random + 0x4086f456 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x4086f456 bootloader_fill_random + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + .text.bootloader_random_disable + 0x4086f4d6 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + 0x4086f4d6 bootloader_random_disable + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_enable .text.bootloader_random_enable) + .text.bootloader_random_enable + 0x4086f5a2 0x14a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + 0x4086f5a2 bootloader_random_enable + *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) + .text.log_invalid_app_partition + 0x4086f6ec 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x4086f770 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x4086f7b6 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x4086f7fa 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x4086f8a4 0x1d0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x4086fa74 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086fa74 bootloader_common_read_otadata + .text.bootloader_utility_load_partition_table + 0x4086fb16 0x270 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086fb16 bootloader_utility_load_partition_table + .text.bootloader_utility_get_selected_boot_partition + 0x4086fd86 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086fd86 bootloader_utility_get_selected_boot_partition + .text.bootloader_reset + 0x4086fe98 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086fe98 bootloader_reset + .text.bootloader_utility_load_boot_image + 0x4086feb4 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086feb4 bootloader_utility_load_boot_image + .text.bootloader_debug_buffer + 0x4086ffd0 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4086ffd0 bootloader_debug_buffer + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + .text.bootloader_sha256_start + 0x4086ffd2 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x4086ffd2 bootloader_sha256_start + .text.bootloader_sha256_data + 0x4086fffe 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x4086fffe bootloader_sha256_data + .text.bootloader_sha256_finish + 0x40870032 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x40870032 bootloader_sha256_finish + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + .text.bootloader_console_deinit + 0x40870078 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x40870078 bootloader_console_deinit + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + .text.__assert_func + 0x40870082 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x40870082 __assert_func + .text.unlikely.abort + 0x408700a2 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x408700a2 abort + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + .text.bootloader_ana_super_wdt_reset_config + 0x408700c8 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x408700c8 bootloader_ana_super_wdt_reset_config + .text.bootloader_ana_clock_glitch_reset_config + 0x408700fa 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x408700fa bootloader_ana_clock_glitch_reset_config + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + .text.should_load + 0x408700fc 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_util_regions_overlap + 0x4087014a 0x4c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x40870196 0x4b4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x4087064a 0x3ec esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x40870a36 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x40870a36 bootloader_load_image + *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 + 0x40870a3e 0x17e esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x40870a3e 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.*) + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + .text.mmu_ll_check_valid_paddr_region.isra.0 + 0x40870bbc 0x86 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x40870c42 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40870c42 mmu_hal_unmap_all + .text.mmu_hal_init + 0x40870c66 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40870c66 mmu_hal_init + .text.mmu_hal_pages_to_bytes + 0x40870c8a 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40870c8a mmu_hal_pages_to_bytes + .text.mmu_hal_check_valid_ext_vaddr_region + 0x40870cba 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40870cba mmu_hal_check_valid_ext_vaddr_region + .text.mmu_hal_map_region + 0x40870cda 0x10a esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40870cda mmu_hal_map_region + *libhal.a:cache_hal.*(.literal .text .literal.* .text.*) + .text.s_cache_hal_init_ctx + 0x40870de4 0x32 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40870de4 s_cache_hal_init_ctx + .text.cache_hal_init + 0x40870e16 0x48 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40870e16 cache_hal_init + .text.s_update_cache_state + 0x40870e5e 0x34 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40870e5e s_update_cache_state + .text.cache_hal_disable + 0x40870e92 0x2a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40870e92 cache_hal_disable + .text.cache_hal_enable + 0x40870ebc 0x2e esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x40870ebc cache_hal_enable + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + .text.rtc_clk_bbpll_disable + 0x40870eea 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_8m + 0x40870f0c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_xtal + 0x40870f54 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x40870fae 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable.part.0 + 0x40871032 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable + 0x40871086 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871086 rtc_clk_32k_enable + .text.rtc_clk_32k_enable_external + 0x408710a0 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408710a0 rtc_clk_32k_enable_external + .text.rtc_clk_rc32k_enable + 0x408710ba 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408710ba rtc_clk_rc32k_enable + .text.rtc_clk_8m_enable + 0x408710e6 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408710e6 rtc_clk_8m_enable + .text.rtc_clk_slow_src_set + 0x40871112 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871112 rtc_clk_slow_src_set + .text.rtc_clk_slow_src_get + 0x40871162 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871162 rtc_clk_slow_src_get + .text.rtc_clk_slow_freq_get_hz + 0x40871180 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871180 rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_src_set + 0x408711a0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408711a0 rtc_clk_fast_src_set + .text.rtc_clk_fast_src_get + 0x408711d0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408711d0 rtc_clk_fast_src_get + .text.rtc_clk_set_cpu_switch_to_pll + 0x408711de 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408711de rtc_clk_set_cpu_switch_to_pll + .text.rtc_clk_xtal_freq_get + 0x408711e0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408711e0 rtc_clk_xtal_freq_get + 0x408711e0 rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x40871250 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871250 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_set_config + 0x408712ba 0x19c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x408712ba rtc_clk_cpu_freq_set_config + .text.rtc_clk_cpu_freq_get_config + 0x40871456 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871456 rtc_clk_cpu_freq_get_config + .text.rtc_clk_xtal_freq_update + 0x40871546 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40871546 rtc_clk_xtal_freq_update + .text.rtc_clk_apb_freq_get + 0x4087156c 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4087156c rtc_clk_apb_freq_get + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x4087165c _loader_text_end = ABSOLUTE (.) + +.iram.text 0x4086c110 0x0 + 0x4086c110 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + +.dram0.bss 0x40875610 0x110 + 0x40875610 . = ALIGN (0x8) + 0x40875610 _dram_start = ABSOLUTE (.) + 0x40875610 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + .sbss.ota_has_initial_contents + 0x40875610 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40875611 0x3 + .sbss.ram_obfs_value + 0x40875614 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .sbss.mapped 0x4087561c 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x4087561d 0x3 + .sbss.s_bbpll_digi_consumers_ref_count + 0x40875620 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .sbss.s_cur_pll_freq + 0x40875624 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .sbss.ctx 0x40875628 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.ctx 0x40875630 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.bootloader_image_hdr + 0x40875708 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x40875708 bootloader_image_hdr + *(.gnu.linkonce.b.*) + *(COMMON) + 0x40875720 . = ALIGN (0x8) + 0x40875720 _bss_end = ABSOLUTE (.) + +.dram0.bootdesc + 0x40875720 0x50 + 0x40875720 _data_start = ABSOLUTE (.) + *(.data_bootloader_desc .data_bootloader_desc.*) + .data_bootloader_desc + 0x40875720 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x40875720 esp_bootloader_desc + +.dram0.data 0x40875770 0x8 + *(.dram1 .dram1.*) + .dram1.0 0x40875770 0x4 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + *(.data) + *(.data.*) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + .sdata.current_read_mapping + 0x40875774 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x40875778 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x40875778 0x1660 + 0x40875778 _rodata_start = ABSOLUTE (.) + *(.rodata) + *(.rodata.*) + .rodata.__assert_func.str1.4 + 0x40875778 0x1535 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x22 (size before relaxing) + .rodata.abort.str1.4 + 0x40876cad 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .rodata.call_start_cpu0.str1.4 + 0x40876cad 0x31 esp-idf/main/libmain.a(bootloader_start.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x40876cad 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.try_load_partition.str1.4 + 0x40876cad 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x40876cad 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x40876cad 0x93 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x40876cad 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x40876cad 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x40876cad 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x40876cad 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40876cad 0x3 + .rodata.__func__.0 + 0x40876cb0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x40876cc0 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.bootloader_util_regions_overlap.str1.4 + 0x40876cc0 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x40876cc0 0x2c2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x40876cc0 0x192 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__.0 + 0x40876cc0 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__.1 + 0x40876ce0 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x40876cf6 0x51 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + *fill* 0x40876cf6 0x2 + .rodata.__func__.0 + 0x40876cf8 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + *fill* 0x40876d11 0x3 + .rodata.__func__.1 + 0x40876d14 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_ana_super_wdt_reset_config.str1.4 + 0x40876d2b 0x49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + *fill* 0x40876d2b 0x1 + .rodata.__func__.0 + 0x40876d2c 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .rodata.bootloader_init.str1.4 + 0x40876d52 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + *fill* 0x40876d52 0x2 + .rodata.__func__.0 + 0x40876d54 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .rodata.bootloader_common_check_efuse_blk_validity.str1.4 + 0x40876d64 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x40876d64 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_fill_random.str1.4 + 0x40876d64 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.__func__.0 + 0x40876d64 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x40876d7b 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_read.str1.4 + 0x40876d7b 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.4 + 0x40876d7b 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_write.str1.4 + 0x40876d7b 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40876d7b 0x1 + .rodata.__func__.0 + 0x40876d7c 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40876d97 0x1 + .rodata.__func__.1 + 0x40876d98 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_init_spi_flash.str1.4 + 0x40876dc0 0xc9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .rodata.bootloader_read_bootloader_header.str1.4 + 0x40876dc0 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_check_bootloader_validity.str1.4 + 0x40876dc0 0x4e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_enable_random.str1.4 + 0x40876dc0 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_print_banner.str1.4 + 0x40876dc0 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.rtc_clk_init.str1.4 + 0x40876dc0 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x40876dc0 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x40876dc0 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_apb_freq_get.str1.4 + 0x40876dc0 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.str1.4 + 0x40876dc0 0x4d esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .rodata.__func__.1 + 0x40876dc0 0x17 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.* .srodata .srodata.*) + 0x40876dd7 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame_hdr) + *(.eh_frame) + 0x40876e8c . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x40876dd7 0x1 + 0x40876dd8 __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + *(EXCLUDE_FILE(*crtend.*) .ctors) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + 0x40876dd8 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + 0x40876dd8 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x40876dd8 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x40876dd8 _rodata_end = ABSOLUTE (.) + 0x40876dd8 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x40876dd8 _lit4_end = ABSOLUTE (.) + 0x40876dd8 . = ALIGN (0x4) + 0x40876dd8 _dram_end = ABSOLUTE (.) + +.iram.text 0x4086c110 0xe82 + 0x4086c110 _stext = . + 0x4086c110 _text_start = ABSOLUTE (.) + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + .text.esp_bootloader_get_description + 0x4086c110 0xa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x4086c110 esp_bootloader_get_description + .text.call_start_cpu0 + 0x4086c11a 0x82 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x4086c11a call_start_cpu0 + .text.bootloader_init + 0x4086c19c 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + 0x4086c19c bootloader_init + .text.bootloader_clock_configure + 0x4086c362 0x164 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x4086c362 bootloader_clock_configure + .text.bootloader_init_mem + 0x4086c4c6 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4086c4c6 bootloader_init_mem + .text.bootloader_flash_update_id + 0x4086c4c8 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + 0x4086c4c8 bootloader_flash_update_id + .text.bootloader_init_spi_flash + 0x4086c4e4 0x1be esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + 0x4086c4e4 bootloader_init_spi_flash + .text.bootloader_clear_bss_section + 0x4086c6a2 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c6a2 bootloader_clear_bss_section + .text.bootloader_read_bootloader_header + 0x4086c6c4 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c6c4 bootloader_read_bootloader_header + .text.bootloader_check_bootloader_validity + 0x4086c702 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c702 bootloader_check_bootloader_validity + .text.bootloader_config_wdt + 0x4086c786 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c786 bootloader_config_wdt + .text.bootloader_enable_random + 0x4086c830 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c830 bootloader_enable_random + .text.bootloader_print_banner + 0x4086c85a 0x56 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4086c85a bootloader_print_banner + .text.bootloader_console_init + 0x4086c8b0 0xde esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x4086c8b0 bootloader_console_init + .text.esp_cpu_configure_region_protection + 0x4086c98e 0x194 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x4086c98e esp_cpu_configure_region_protection + .text.rtc_clk_init + 0x4086cb22 0x20c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x4086cb22 rtc_clk_init + .text.get_act_hp_dbias + 0x4086cd2e 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x4086cd2e get_act_hp_dbias + .text.get_act_lp_dbias + 0x4086cd62 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + 0x4086cd62 get_act_lp_dbias + .text.wdt_hal_init + 0x4086cd96 0x1ec esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + 0x4086cd96 wdt_hal_init + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x4086cf92 . = (. + 0x10) + *fill* 0x4086cf82 0x10 + 0x4086cf92 _text_end = ABSOLUTE (.) + 0x4086cf92 _etext = . + +.riscv.attributes + 0x00000000 0x60 + *(.riscv.attributes) + .riscv.attributes + 0x00000000 0x5c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .riscv.attributes + 0x0000005c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .riscv.attributes + 0x000000b8 0x5c esp-idf/main/libmain.a(bootloader_start.c.obj) + .riscv.attributes + 0x00000114 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .riscv.attributes + 0x00000170 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .riscv.attributes + 0x000001cc 0x5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .riscv.attributes + 0x00000228 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .riscv.attributes + 0x00000284 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .riscv.attributes + 0x000002e0 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .riscv.attributes + 0x0000033c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .riscv.attributes + 0x00000398 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .riscv.attributes + 0x000003f4 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .riscv.attributes + 0x00000450 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .riscv.attributes + 0x000004ac 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .riscv.attributes + 0x0000050c 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .riscv.attributes + 0x00000568 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .riscv.attributes + 0x000005c4 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .riscv.attributes + 0x00000620 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .riscv.attributes + 0x0000067c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .riscv.attributes + 0x000006d8 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .riscv.attributes + 0x00000734 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .riscv.attributes + 0x00000794 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .riscv.attributes + 0x000007f4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .riscv.attributes + 0x00000850 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .riscv.attributes + 0x000008ac 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .riscv.attributes + 0x00000908 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .riscv.attributes + 0x00000964 0x60 esp-idf/log/liblog.a(log_timestamp.c.obj) + .riscv.attributes + 0x000009c4 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .riscv.attributes + 0x00000a20 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .riscv.attributes + 0x00000a7c 0x5c esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .riscv.attributes + 0x00000ad8 0x5c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .riscv.attributes + 0x00000b34 0x5c esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0x8b8 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_aranges + 0x00000020 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_aranges + 0x00000048 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x00000070 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000100 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000120 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000190 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_aranges + 0x000001b0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x000001e0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_aranges + 0x00000208 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_aranges + 0x00000228 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000278 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000298 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x000002b8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x000002d8 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000318 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_aranges + 0x00000340 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x000003f8 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_aranges + 0x00000440 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x00000488 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_aranges + 0x000004a8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x000004c8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_aranges + 0x000004e8 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00000608 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_aranges + 0x00000668 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_aranges + 0x000006a8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_aranges + 0x000006d0 0x20 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x000006f0 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000738 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000790 0x38 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_aranges + 0x000007c8 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00000830 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x3d8ce + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x181 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_info 0x00000181 0x217 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_info 0x00000398 0xc95 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x0000102d 0x207f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x000030ac 0x5b4 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00003660 0x2663 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00005cc3 0xc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_info 0x00005d89 0x44e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x000061d7 0x15f esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_info 0x00006336 0x4553 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_info 0x0000a889 0xb35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000b3be 0x366 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_info 0x0000b724 0xa6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x0000b7ca 0x2b2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x0000ba7c 0xa48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x0000c4c4 0x42e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_info 0x0000c8f2 0x59c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000122b8 0xbe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_info 0x00012e9a 0x1fc9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x00014e63 0x4aa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_info 0x00019907 0x387 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x00019c8e 0x6e7a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_info 0x00020b08 0x59f9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x00026501 0x48d8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_info 0x0002add9 0xbf9 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_info 0x0002b9d2 0x4ce3 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_info 0x000306b5 0x12c esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x000307e1 0x3831 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00034012 0x3a97 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00037aa9 0x999 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_info 0x00038442 0x457e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x0003c9c0 0xf0e esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_abbrev 0x00000000 0x573c + *(.debug_abbrev) + .debug_abbrev 0x00000000 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_abbrev 0x000000aa 0xfb esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_abbrev 0x000001a5 0x309 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x000004ae 0x516 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x000009c4 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000bc1 0x4fb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x000010bc 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_abbrev 0x00001145 0x1ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000130f 0xdc esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_abbrev 0x000013eb 0x3e4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_abbrev 0x000017cf 0x298 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00001a67 0x143 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00001baa 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00001c0f 0x194 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x00001da3 0x322 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x000020c5 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_abbrev 0x0000219d 0x5c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000275f 0x2fe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_abbrev 0x00002a5d 0x347 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x00002da4 0x376 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_abbrev 0x0000311a 0x15f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00003279 0x4c7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_abbrev 0x00003740 0x639 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00003d79 0x2fd esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_abbrev 0x00004076 0x21a esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_abbrev 0x00004290 0x39a esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_abbrev 0x0000462a 0xe5 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x0000470f 0x22d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x0000493c 0x37a esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004cb6 0x2b1 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_abbrev 0x00004f67 0x43b esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x000053a2 0x39a esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_line 0x00000000 0x1486b + *(.debug_line) + .debug_line 0x00000000 0x20e esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_line 0x0000020e 0x3f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_line 0x00000607 0x64b esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x00000c52 0x1f3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00002b8f 0x6d9 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00003268 0x2142 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x000053aa 0x1ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_line 0x00005596 0x458 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x000059ee 0x27c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_line 0x00005c6a 0xb36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_line 0x000067a0 0x989 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00007129 0x5c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_line 0x000076ef 0xdd esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000077cc 0x4d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x00007ca4 0xcf4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x00008998 0x480 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_line 0x00008e18 0x1cb1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000aac9 0x9f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_line 0x0000b4c2 0xae8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x0000bfaa 0x5ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_line 0x0000c574 0x71a esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x0000cc8e 0xb56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_line 0x0000d7e4 0x203d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0000f821 0x8d4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_line 0x000100f5 0x838 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_line 0x0001092d 0xcf0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_line 0x0001161d 0x2d2 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x000118ef 0x47a esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00011d69 0x713 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0001247c 0x442 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_line 0x000128be 0x13b9 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00013c77 0xbf4 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_frame 0x00000000 0x1758 + *(.debug_frame) + .debug_frame 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_frame 0x00000020 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_frame 0x00000060 0x38 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x00000098 0x264 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x000002fc 0x58 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000354 0x198 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x000004ec 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_frame 0x0000050c 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000574 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_frame 0x000005b0 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_frame 0x000005e4 0x100 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x000006e4 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_frame 0x0000071c 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000073c 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x00000780 0xb4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x00000834 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_frame 0x00000880 0x2d0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000b50 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_frame 0x00000bfc 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x00000cc0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_frame 0x00000cf0 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00000d24 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_frame 0x00000d5c 0x31c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00001078 0x10c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_frame 0x00001184 0xd0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_frame 0x00001254 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_frame 0x000012a8 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x000012d8 0x80 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001358 0xb0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001408 0x60 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_frame 0x00001468 0x170 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x000015d8 0x180 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_str 0x00000000 0x10967 + *(.debug_str) + .debug_str 0x00000000 0x10967 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x2e9 (size before relaxing) + .debug_str 0x00010967 0x2ff esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_str 0x00010967 0xa6a esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_str 0x00010967 0x19ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00010967 0x4e4 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00010967 0x1a0b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00010967 0x28d esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_str 0x00010967 0x41a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00010967 0x2cd esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_str 0x00010967 0x3963 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_str 0x00010967 0x112c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00010967 0x6f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_str 0x00010967 0x27c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x00010967 0x35c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_str 0x00010967 0xa4e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x00010967 0x317 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_str 0x00010967 0x3d45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x00010967 0x149c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_str 0x00010967 0x1d1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_str 0x00010967 0x2978 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_str 0x00010967 0x351 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x00010967 0x4d0b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_str 0x00010967 0x422f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x00010967 0x3391 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_str 0x00010967 0x9d0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_str 0x00010967 0x2bc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_str 0x00010967 0x2c9 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_str 0x00010967 0x2958 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x00010967 0x2b08 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x00010967 0x5d8 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_str 0x00010967 0x2bbb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x00010967 0x733 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_loc 0x00000000 0x98b5 + *(.debug_loc) + .debug_loc 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_loc 0x000000c8 0xc7 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x0000018f 0x10a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00001232 0x1d9 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000140b 0x248c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00003897 0x17d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00003a14 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_loc 0x00003a46 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_loc 0x00003b1e 0x3ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00003ecb 0x19c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x00004067 0x1e5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x0000424c 0x153b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00005787 0x135 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_loc 0x000058bc 0x141 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x000059fd 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_loc 0x00005a78 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x00005ad8 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_loc 0x00005c88 0xdbc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x00006a44 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_loc 0x00006cac 0x716 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_loc 0x000073c2 0x518 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_loc 0x000078da 0x13 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x000078ed 0x182 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00007a6f 0x175 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_loc 0x00007be4 0xfed esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00008bd1 0xce4 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x1e98 + *(.debug_ranges) + .debug_ranges 0x00000000 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_ranges 0x00000010 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_ranges 0x00000028 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x00000058 0x228 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000280 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x000002f0 0x3d8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x000006c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_ranges 0x000006d8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x000006f8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_ranges 0x00000710 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .debug_ranges 0x000007e0 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000838 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_ranges 0x00000848 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00000858 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x00000898 0x90 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00000928 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .debug_ranges 0x00000940 0x280 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00000bc0 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .debug_ranges 0x00000c68 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x00000cd8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_ranges 0x00000ce8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000d40 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_ranges 0x00000e48 0x620 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00001468 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .debug_ranges 0x000014d0 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .debug_ranges 0x00001500 0x280 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .debug_ranges 0x00001780 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x000017a8 0x88 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001830 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x000018c8 0x88 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .debug_ranges 0x00001950 0x3c8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00001d18 0x180 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + *(.debug_line_str) + +.debug_loclists + *(.debug_loclists) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + *(.debug_rnglists) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x2f + *(.comment) + .comment 0x00000000 0x2f esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x30 (size before relaxing) + .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_esp32c6.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(flash_encrypt.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.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_esp32c6.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_init.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(pmu_param.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .comment 0x0000002f 0x30 esp-idf/log/liblog.a(log_timestamp.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(lp_timer_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.note.GNU-stack + 0x00000000 0x0 + *(.note.GNU-stack) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .note.GNU-stack + 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + +/DISCARD/ + *(.rela.*) +OUTPUT(bootloader.elf elf32-littleriscv) + +Cross Reference Table + +Symbol File +Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Enable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +EFUSE esp-idf/hal/libhal.a(mmu_hal.c.obj) + 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(pmu_param.c.obj) +ESP_EFUSE_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0_CH6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DSLP_LP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DSLP_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_LSLP_HP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_LSLP_HP_DBIAS 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_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_SPI_BOOT_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_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SWAP_UART_SDIO_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR 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_WDT_DELAY_SEL 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_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0_CH6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 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_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 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_BLOCK_USR_DATA 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_CRYPT_DPA_ENABLE 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_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_ICACHE 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_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DSLP_LP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DSLP_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 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_KEY_PURPOSE_1 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_KEY_PURPOSE_2 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_KEY_PURPOSE_3 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_KEY_PURPOSE_4 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_KEY_PURPOSE_5 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_LSLP_HP_DBG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_LSLP_HP_DBIAS 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_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PKG_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-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 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_SECURE_BOOT_KEY_REVOKE1 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_SECURE_BOOT_KEY_REVOKE2 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_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_BOOT_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_WR_DIS_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SWAP_UART_SDIO_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART1 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_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +LP_ANA_PERI esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +LP_CLKRST esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +LP_TIMER esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +LP_UART esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +LP_WDT esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +MODEM_LPCON esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +MODEM_SYSCON esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +PCR esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + 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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +PMU esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) +SPIMEM0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPIMEM1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +TIMERG0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +TIMERG1 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) +UART0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +__ashldi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/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/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.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_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +__clz_tab C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) + C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) +__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) +__lshrdi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__popcountsi2 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__sf C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) +__udivdi3 C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) + 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) +_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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) +_impure_data C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) +_impure_ptr C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) +abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + 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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.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_ana_super_wdt_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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_esp32c6.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_esp32c6.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_esp32c6.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_efuse_blk_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_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_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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_esp32c6.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_esp32c6.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_esp32c6.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_esp32c6.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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_esp32c6.c.obj) +bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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_esp32c6.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.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(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(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_esp32c6.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.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_esp32c6.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_esp32c6.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_esp32c6.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) +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) +cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.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) + esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.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/bootloader_support/libbootloader_support.a(bootloader_init.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_blk_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_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_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) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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_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_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_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_enable_rom_secure_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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_unused_key_block 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_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_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_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_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_keypurpose_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_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.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-idf/efuse/libefuse.a(esp_efuse_api_key.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_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-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.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/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_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_timestamp.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + 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) + 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/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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_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_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_timestamp.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_esp32c6.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_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_output_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) +esp_rom_output_tx_wait_idle 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) +esp_rom_printf 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) + 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/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.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_esp32c6.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 esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +esp_rom_regi2c_write esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) + 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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c6.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_system esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) +esp_rom_spiflash_erase_block esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_fix_dummylen esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +esp_rom_spiflash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) +ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) +ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_sha_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_sha_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_sha_update esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +get_act_hp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +get_act_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +lp_timer_hal_clear_alarm_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +lp_timer_hal_clear_overflow_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +lp_timer_hal_get_cycle_count esp-idf/hal/libhal.a(lp_timer_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +lp_timer_hal_set_alarm_target esp-idf/hal/libhal.a(lp_timer_hal.c.obj) +memcmp C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +memcpy C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 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) +memset C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) + esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.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_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) + esp-idf/main/libmain.a(bootloader_start.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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c6.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_flash.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) +pmu_hp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_hp_system_clock_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_hp_system_digital_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_hp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_hp_system_retention_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_lp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) +pmu_lp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.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) +regi2c_read_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_read_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_write_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +regi2c_write_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_hp_regi2c_esp32c6.c.obj) +rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.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_clk_init.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.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_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.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_pll_and_pll_lock_release 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) +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_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_rc32k_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_set_cpu_switch_to_pll esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.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/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_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.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) +s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) +s_get_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_update_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) +wdt_hal_config_stage esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) +wdt_hal_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_init esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_set_flashboot_en esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) diff --git a/JoystickControlServo/build/bootloader/build.ninja b/JoystickControlServo/build/bootloader/build.ninja new file mode 100644 index 0000000..d218e3f --- /dev/null +++ b/JoystickControlServo/build/bootloader/build.ninja @@ -0,0 +1,2690 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: bootloader +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor bootloader.elf + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32c6.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_soc project_elf_src_esp32c6.c + +build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/project_elf_src_esp32c6.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_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always + INCLUDES = -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + OBJECT_FILE_DIR = CMakeFiles\bootloader.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_PDB = bootloader.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Link the executable bootloader.elf + +build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c6.c.obj | 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/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/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/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/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/famil/esp/v5.4/esp-idf/components/riscv/ld/rom.api.ld C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ld/esp32c6.peripherals.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.api.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.rvfp.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.wdt.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.systimer.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.version.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib.ld C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main/ld/esp32c6/bootloader.ld C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main/ld/esp32c6/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/soc/libsoc.a + FLAGS = -march=rv32imac_zicsr_zifencei + LINK_FLAGS = -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C6=0 -Wl,--Map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T rom.api.ld -T esp32c6.rom.ld -T esp32c6.rom.api.ld -T esp32c6.rom.rvfp.ld -T esp32c6.rom.wdt.ld -T esp32c6.rom.systimer.ld -T esp32c6.rom.version.ld -T esp32c6.rom.newlib.ld -T esp32c6.peripherals.ld -T bootloader.ld -T bootloader.rom.ld + LINK_LIBRARIES = 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/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/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/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/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 -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u esp_system_include_startup_funcs -u esp_sleep_gpio_include -u bootloader_hooks_include + LINK_PATH = -LC:/Users/famil/esp/v5.4/esp-idf/components/riscv/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main/ld/esp32c6 + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_FILE = bootloader.elf + TARGET_PDB = bootloader.elf.pdb + + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size + + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files + + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env --env IDF_TARGET=esp32c6 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.0 --dont-write-deprecated --output config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/check_term.py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig IDF_TARGET=esp32c6 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.4.0 C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env --env IDF_TARGET=esp32c6 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.0 --output config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/Users/famil/esp/v5.4/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 + + +############################################# +# 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32c6 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --min-rev-full 0 --max-rev-full 99 -o C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.elf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin > C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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 gen_project_binary + + +############################################# +# Custom command for CMakeFiles\erase_flash + +build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\merge-bin + +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=merge_bin;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/merged-binary.bin;@C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32c6;;--revision;0;;--decode-panic;backtrace;;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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_esp32c6.c + + +############################################# +# Custom command for project_elf_src_esp32c6.c + +build project_elf_src_esp32c6.c | ${cmake_ninja_workdir}project_elf_src_esp32c6.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/project_elf_src_esp32c6.c" + DESC = Generating project_elf_src_esp32c6.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D UF2_CMD=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;C:/Users/famil/esp/v5.4/esp-idf/tools/mkuf2.py;write;--chip;esp32c6 -D UF2_ARGS=--json;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/flasher_args.json;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/uf2.bin -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D UF2_CMD=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;C:/Users/famil/esp/v5.4/esp-idf/tools/mkuf2.py;write;--chip;esp32c6 -D UF2_ARGS=--json;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/flasher_args.json;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/uf2-app.bin;--bin;app -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_micro-ecc + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\interrupts.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\gpio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\uart_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\adc_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\dedic_gpio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/etm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\etm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\gdma_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\spi_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\ledc_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\pcnt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\rmt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\sdm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\i2s_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\i2c_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\temperature_sensor_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\timer_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/parlio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\parlio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\mcpwm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\mpi_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\twai_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\wdt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ieee802154_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\ieee802154_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\rtc_io_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\sdio_slave_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/system_retention_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6\system_retention_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Order-only phony target for __idf_micro-ecc + +build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\uECC_verify_antifault.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Link the static library esp-idf\micro-ecc\libmicro-ecc.a + +build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_FILE = esp-idf\micro-ecc\libmicro-ecc.a + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\micro-ecc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\micro-ecc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32c6\efuse_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/lp_timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lp_timer_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random_esp32c6.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c6.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_loader.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console_loader.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32c6\bootloader_sha.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32c6\bootloader_soc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_esp32c6.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32c6\bootloader_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_ecdsa.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32c6\bootloader_ecdsa.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_panic.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.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_esp32c6.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/esp32c6/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/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/esp32c6/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6\esp_efuse_table.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6\esp_efuse_fields.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6\esp_efuse_rtc_calib.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6\esp_efuse_utility.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.csv -t esp32c6 --max_blk_len 256" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.csv -t esp32c6 --max_blk_len 256 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32c6 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\esp_cpu_intr.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\cpu_region_protect.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\rtc_clk_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\rtc_clk.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_param.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\pmu_param.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\pmu_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\pmu_sleep.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\rtc_time.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\chip_info.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/ocode_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6\ocode_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/edit_cache: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_hp_regi2c_esp32c6.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_hp_regi2c_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || . + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_timestamp.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_lock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader_check_size + +build esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\esptool_py && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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/famil/esp/v5.4/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_soc + +build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bootloader_start.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\esp\v5.4\esp-idf\components\bootloader\subproject -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 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 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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader + +build all: phony app bootloader.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf + +build esp-idf/all: phony esp-idf/riscv/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/hal/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/esp32c6/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6 + +build esp-idf/esp_hw_support/port/esp32c6/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_security + +build esp-idf/esp_security/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/newlib + +build esp-idf/newlib/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/riscv + +build esp-idf/riscv/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig C$:/Users/famil/esp/v5.4/esp-idf/.git/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/.git C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/sources.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/hal/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/.git C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/.git C$:/Users/famil/esp/v5.4/esp-idf/components/log/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/openthread/.git C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/soc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/.git C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/.git C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/build.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/component.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/depgraph.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/dfu.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/idf.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/kconfig.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/ldgen.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project_description.json.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/targets.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/utilities.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/version.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/confgen.py C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig C$:/Users/famil/esp/v5.4/esp-idf/.git/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/.git C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/sources.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/hal/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/.git C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/.git C$:/Users/famil/esp/v5.4/esp-idf/components/log/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/openthread/.git C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/soc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/.git C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/.git C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/build.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/component.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/depgraph.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/dfu.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/idf.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/kconfig.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/ldgen.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project_description.json.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/targets.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/utilities.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/version.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/confgen.py C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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/JoystickControlServo/build/bootloader/cmake_install.cmake b/JoystickControlServo/build/bootloader/cmake_install.cmake new file mode 100644 index 0000000..0aa6a8c --- /dev/null +++ b/JoystickControlServo/build/bootloader/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/JoystickControlServo/build/bootloader/compile_commands.json b/JoystickControlServo/build/bootloader/compile_commands.json new file mode 100644 index 0000000..6638e4e --- /dev/null +++ b/JoystickControlServo/build/bootloader/compile_commands.json @@ -0,0 +1,584 @@ +[ +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32c6.c.obj -c C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\bootloader\\project_elf_src_esp32c6.c", + "file": "C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\bootloader\\project_elf_src_esp32c6.c", + "output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\interrupts.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\interrupts.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\interrupts.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\gpio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gpio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\uart_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\uart_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\uart_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\adc_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\adc_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\adc_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\dedic_gpio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\dedic_gpio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\etm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\etm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\etm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\etm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\gdma_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gdma_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\gdma_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\spi_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\spi_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\spi_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ledc_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ledc_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\ledc_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pcnt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\pcnt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\pcnt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rmt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rmt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\rmt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\sdm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\sdm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\i2s_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2s_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\i2s_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\i2c_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2c_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\i2c_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\temperature_sensor_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\temperature_sensor_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\timer_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\timer_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\timer_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\parlio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\parlio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\parlio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\parlio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\mcpwm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mcpwm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\mcpwm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\mpi_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mpi_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\mpi_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\twai_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\twai_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\twai_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\wdt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\wdt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\wdt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ieee802154_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ieee802154_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ieee802154_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\ieee802154_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_io_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rtc_io_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\rtc_io_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\sdio_slave_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdio_slave_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdio_slave_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\sdio_slave_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\system_retention_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\system_retention_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\system_retention_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\system_retention_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\efuse_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\efuse_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\lp_timer_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\lp_timer_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\lp_timer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\cache_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32c6.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\bootloader_sha.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_sha.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32c6\\bootloader_sha.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\bootloader_soc.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_soc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_soc.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32c6\\bootloader_soc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\bootloader_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_esp32c6.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32c6\\bootloader_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\bootloader_ecdsa.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_ecdsa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\bootloader_ecdsa.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32c6\\bootloader_ecdsa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_table.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_table.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_table.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_fields.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_fields.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_rtc_calib.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_utility.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_cpu_intr.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_cpu_intr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\esp_cpu_intr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\cpu_region_protect.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\cpu_region_protect.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\cpu_region_protect.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_clk_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_clk_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_clk.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_clk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_param.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_param.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_param.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_param.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_sleep.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_sleep.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_sleep.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_time.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\chip_info.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\chip_info.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\chip_info.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ocode_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\ocode_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\ocode_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\ocode_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_hp_regi2c_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_hp_regi2c_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_hp_regi2c_esp32c6.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_hp_regi2c_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj" +} +] \ No newline at end of file diff --git a/JoystickControlServo/build/bootloader/config.env b/JoystickControlServo/build/bootloader/config.env new file mode 100644 index 0000000..b73cf4d --- /dev/null +++ b/JoystickControlServo/build/bootloader/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/hal/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32c6", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.4.0", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/famil/esp/v5.4/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/kconfigs_projbuild.in" +} diff --git a/JoystickControlServo/build/bootloader/config/kconfig_menus.json b/JoystickControlServo/build/bootloader/config/kconfig_menus.json new file mode 100644 index 0000000..f876781 --- /dev/null +++ b/JoystickControlServo/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,10970 @@ +[ + { + "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_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_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_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_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_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_SUPPORTED", + "name": "SOC_ETM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_SUPPORTED", + "name": "SOC_PARLIO_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_IEEE802154_SUPPORTED", + "name": "SOC_IEEE802154_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "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_LP_CORE_SUPPORTED", + "name": "SOC_LP_CORE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_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_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ECC_SUPPORTED", + "name": "SOC_ECC_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_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_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_APM_SUPPORTED", + "name": "SOC_APM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PMU_SUPPORTED", + "name": "SOC_PMU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PAU_SUPPORTED", + "name": "SOC_PAU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_SUPPORTED", + "name": "SOC_LP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_AON_SUPPORTED", + "name": "SOC_LP_AON_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPHERALS_SUPPORTED", + "name": "SOC_LP_PERIPHERALS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_SUPPORTED", + "name": "SOC_LP_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_LP_UART_SUPPORTED", + "name": "SOC_ULP_LP_UART_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_ASSIST_DEBUG_SUPPORTED", + "name": "SOC_ASSIST_DEBUG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MODEM_CLOCK_SUPPORTED", + "name": "SOC_MODEM_CLOCK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "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_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_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_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", + "name": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_TEMPERATURE_SHARE_INTR", + "name": "SOC_ADC_TEMPERATURE_SHARE_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_FLEXIBLE_INTC", + "name": "SOC_CPU_HAS_FLEXIBLE_INTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_INT_PLIC_SUPPORTED", + "name": "SOC_INT_PLIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_CSR_PC", + "name": "SOC_CPU_HAS_CSR_PC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_PMA", + "name": "SOC_CPU_HAS_PMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "name": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_PMP_REGION_GRANULARITY", + "name": "SOC_CPU_PMP_REGION_GRANULARITY", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORT_ETM", + "name": "SOC_GDMA_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", + "name": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_GROUPS", + "name": "SOC_ETM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_CHANNELS_PER_GROUP", + "name": "SOC_ETM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_SUPPORT_SLEEP_RETENTION", + "name": "SOC_ETM_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", + "name": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_ETM", + "name": "SOC_GPIO_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", + "name": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", + "name": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", + "name": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", + "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_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", + "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLOCKOUT_HAS_SOURCE_GATE", + "name": "SOC_CLOCKOUT_HAS_SOURCE_GATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", + "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_FSM_RST", + "name": "SOC_I2C_SUPPORT_HW_FSM_RST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", + "name": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLEEP_RETENTION", + "name": "SOC_I2C_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_NUM", + "name": "SOC_LP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_FIFO_LEN", + "name": "SOC_LP_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_ETM", + "name": "SOC_I2S_SUPPORTS_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_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_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORT_SLEEP_RETENTION", + "name": "SOC_I2S_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", + "name": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", + "name": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", + "name": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", + "name": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", + "name": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", + "name": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "name": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MMU_DI_VADDR_SHARED", + "name": "SOC_MMU_DI_VADDR_SHARED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", + "name": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_RMT_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORT_ETM", + "name": "SOC_MCPWM_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", + "name": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", + "name": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_GROUPS", + "name": "SOC_PARLIO_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_UNITS_PER_GROUP", + "name": "SOC_PARLIO_TX_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_RX_UNITS_PER_GROUP", + "name": "SOC_PARLIO_RX_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", + "name": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", + "name": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_RX_SHARE_INTERRUPT", + "name": "SOC_PARLIO_TX_RX_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", + "name": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_PLL_F80M", + "name": "SOC_SDM_CLK_SUPPORT_PLL_F80M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_XTAL", + "name": "SOC_SDM_CLK_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLEEP_RETENTION", + "name": "SOC_SPI_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_PLL_F80M", + "name": "SOC_SPI_SUPPORT_CLK_PLL_F80M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_RC_FAST", + "name": "SOC_SPI_SUPPORT_CLK_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", + "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", + "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORT_RC_FAST", + "name": "SOC_SYSTIMER_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORT_ETM", + "name": "SOC_SYSTIMER_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", + "name": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_SUPPORT_ETM", + "name": "SOC_TIMER_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MWDT_SUPPORT_XTAL", + "name": "SOC_MWDT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", + "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_CLK_SUPPORT_XTAL", + "name": "SOC_TWAI_CLK_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_PAD_JTAG", + "name": "SOC_EFUSE_DIS_PAD_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_ECC", + "name": "SOC_SECURE_BOOT_V2_ECC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APM_CTRL_FILTER_SUPPORTED", + "name": "SOC_APM_CTRL_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APM_LP_APM0_SUPPORTED", + "name": "SOC_APM_LP_APM0_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "name": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "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_LP_NUM", + "name": "SOC_UART_LP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_UART_FIFO_LEN", + "name": "SOC_LP_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_PLL_F80M_CLK", + "name": "SOC_UART_SUPPORT_PLL_F80M_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HAS_LP_UART", + "name": "SOC_UART_HAS_LP_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_SLEEP_RETENTION", + "name": "SOC_UART_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BEACON_WAKEUP", + "name": "SOC_PM_SUPPORT_BEACON_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_XTAL32K_PD", + "name": "SOC_PM_SUPPORT_XTAL32K_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC32K_PD", + "name": "SOC_PM_SUPPORT_RC32K_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_TOP_PD", + "name": "SOC_PM_SUPPORT_TOP_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_HP_AON_PD", + "name": "SOC_PM_SUPPORT_HP_AON_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_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_PMU_MODEM_STATE", + "name": "SOC_PM_SUPPORT_PMU_MODEM_STATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_SW", + "name": "SOC_PM_CPU_RETENTION_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_REGDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_REGDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_RETENTION_HAS_CLOCK_BUG", + "name": "SOC_PM_RETENTION_HAS_CLOCK_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", + "name": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_LINK_NUM", + "name": "SOC_PM_PAU_LINK_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", + "name": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", + "name": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", + "name": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_RETENTION_MODULE_NUM", + "name": "SOC_PM_RETENTION_MODULE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_MODEM_CLOCK_IS_INDEPENDENT", + "name": "SOC_MODEM_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_OSC_SLOW_SUPPORTED", + "name": "SOC_CLK_OSC_SLOW_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC32K_SUPPORTED", + "name": "SOC_CLK_RC32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RCC_IS_INDEPENDENT", + "name": "SOC_RCC_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", + "name": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", + "name": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_CLOCK_IS_INDEPENDENT", + "name": "SOC_RNG_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HE_SUPPORT", + "name": "SOC_WIFI_HE_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MAC_VERSION_NUM", + "name": "SOC_WIFI_MAC_VERSION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_ESP_NIMBLE_CONTROLLER", + "name": "SOC_ESP_NIMBLE_CONTROLLER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_POWER_CONTROL_SUPPORTED", + "name": "SOC_BLE_POWER_CONTROL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", + "name": "SOC_BLE_PERIODIC_ADV_ENH_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_BLE_MULTI_CONN_OPTIMIZATION", + "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND", + "name": "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_NO_RESET_BY_ANA_BOD", + "name": "SOC_CAPS_NO_RESET_BY_ANA_BOD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR", + "name": "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_CORE_SUPPORT_ETM", + "name": "SOC_LP_CORE_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "name": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "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_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_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 with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Use ANSI terminal colors in log output\nEnable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format", + "title": "Format", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "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", + "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED && 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 separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2: 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 (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt only the app image that is present in the partition of type app", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [], + "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_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RVFPLIB", + "name": "ESP_ROM_HAS_RVFPLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_SYSTIMER", + "name": "ESP_ROM_HAS_HAL_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HEAP_TLSF", + "name": "ESP_ROM_HAS_HEAP_TLSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_TLSF_CHECK_PATCH", + "name": "ESP_ROM_TLSF_CHECK_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_MULTI_HEAP_WALK_PATCH", + "name": "ESP_ROM_MULTI_HEAP_WALK_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_REGI2C_BUG", + "name": "ESP_ROM_HAS_REGI2C_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE", + "name": "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_WDT_INIT_PATCH", + "name": "ESP_ROM_WDT_INIT_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "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": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", + "id": "compiler-options-compiler-float-lib-source", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_REV_MIN_0", + "name": "ESP32C6_REV_MIN_0", + "range": null, + "title": "Rev v0.0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_REV_MIN_1", + "name": "ESP32C6_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "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-c6-revision", + "name": "ESP32C6_REV_MIN", + "title": "Minimum Supported ESP32-C6 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32C6_REV_MIN_FULL", + "name": "ESP32C6_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": "ESP32C6_REV_MAX_FULL", + "name": "ESP32C6_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32-C6 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\n\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\n\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.\n\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.\n\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.)\n\nNote that ESP32-C6 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()\nAPI to return a MAC for Ethernet, this can only be used with an external MAC peripheral.", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP && !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, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS 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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 136 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED && ", + "help": "To be able to select this option, please select `RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED` first.\nThis option will be removed in IDF v6.0.", + "id": "RTC_CLK_SRC_INT_RC32K", + "name": "RTC_CLK_SRC_INT_RC32K", + "range": null, + "title": "Internal 32 kHz RC oscillator (NOT RECOMMENDED TO USE, READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Internal RC32K clock is unstable at extreme temperatures and is not recommended for use.", + "id": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED", + "name": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED", + "range": null, + "title": "Confirm to use the unrecommended 32 kHz RC oscillator (READ DOCS FIRST)", + "type": "bool" + }, + { + "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- 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "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": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "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": "Whether 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-configurations", + "title": "GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DW_GDMA_ISR_IRAM_SAFE", + "name": "DW_GDMA_ISR_IRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "DW_GDMA_OBJ_DRAM_SAFE", + "name": "DW_GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", + "id": "DW_GDMA_ENABLE_DEBUG_LOG", + "name": "DW_GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-dw_gdma-configurations", + "title": "DW_GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", + "id": "DMA2D_OPERATION_FUNC_IN_IRAM", + "name": "DMA2D_OPERATION_FUNC_IN_IRAM", + "range": null, + "title": "Place 2D-DMA operation functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DMA2D_ISR_IRAM_SAFE", + "name": "DMA2D_ISR_IRAM_SAFE", + "range": null, + "title": "2D-DMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_DMA2D_SUPPORTED", + "id": "component-config-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcfully enable ECC constant time point multiplication operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_120", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_120", + "range": null, + "title": "120 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" + } + ], + "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": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [], + "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": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception 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_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.51V", + "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.64V", + "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.76V", + "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.92V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "3.10V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.27V", + "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 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 ESP32-C6 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": "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" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": 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 vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", + "id": "component-config-log-log-level-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", + "id": "component-config-log-log-level-maximum-log-verbosity", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-format-timestamp", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-format", + "title": "Format", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log", + "title": "Log", + "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 occurrence 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 occurrence 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/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "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; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-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": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32S3 && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + } + ], + "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 documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORTED", + "name": "SPI_FLASH_VENDOR_XMC_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_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_SUPPORT_LS\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "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/JoystickControlServo/build/bootloader/config/sdkconfig.cmake b/JoystickControlServo/build/bootloader/config/sdkconfig.cmake new file mode 100644 index 0000000..8c3e725 --- /dev/null +++ b/JoystickControlServo/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,849 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_ETM_SUPPORTED "y") +set(CONFIG_SOC_PARLIO_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_IEEE802154_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_LP_CORE_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_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_SYSTIMER_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_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_ECC_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_APM_SUPPORTED "y") +set(CONFIG_SOC_PMU_SUPPORTED "y") +set(CONFIG_SOC_PAU_SUPPORTED "y") +set(CONFIG_SOC_LP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_LP_AON_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPHERALS_SUPPORTED "y") +set(CONFIG_SOC_LP_I2C_SUPPORTED "y") +set(CONFIG_SOC_ULP_LP_UART_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_MODEM_CLOCK_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "1") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "7") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED "y") +set(CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CPU_CORES_NUM "1") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") +set(CONFIG_SOC_INT_PLIC_SUPPORTED "y") +set(CONFIG_SOC_CPU_HAS_CSR_PC "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "4") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "4") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") +set(CONFIG_SOC_CPU_HAS_PMA "y") +set(CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP "y") +set(CONFIG_SOC_CPU_PMP_REGION_GRANULARITY "4") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") +set(CONFIG_SOC_GDMA_SUPPORT_ETM "y") +set(CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_ETM_GROUPS "1") +set(CONFIG_SOC_ETM_CHANNELS_PER_GROUP "50") +set(CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "31") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM "8") +set(CONFIG_SOC_GPIO_SUPPORT_ETM "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP "y") +set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "30") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "30") +set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK "0") +set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT "8") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x7fffff00") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") +set(CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_RTCIO_PIN_COUNT "8") +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_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "1") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH "y") +set(CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_LP_I2C_NUM "1") +set(CONFIG_SOC_LP_I2C_FIFO_LEN "16") +set(CONFIG_SOC_I2S_NUM "1") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_ETM "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED "y") +set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX "16") +set(CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH "10") +set(CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE "y") +set(CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED "y") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_DI_VADDR_SHARED "y") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE "y") +set(CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MCPWM_GROUPS "1") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MCPWM_SUPPORT_ETM "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP "y") +set(CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_PARLIO_GROUPS "1") +set(CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP "1") +set(CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP "1") +set(CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH "16") +set(CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH "16") +set(CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") +set(CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M "y") +set(CONFIG_SOC_SDM_CLK_SUPPORT_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_SYSTIMER_SUPPORT_ETM "y") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") +set(CONFIG_SOC_TIMER_SUPPORT_ETM "y") +set(CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") +set(CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "2") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "32768") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_SECURE_BOOT_V2_ECC "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED "y") +set(CONFIG_SOC_APM_LP_APM0_SUPPORTED "y") +set(CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "2") +set(CONFIG_SOC_UART_LP_NUM "1") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_LP_UART_FIFO_LEN "16") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_HAS_LP_UART "y") +set(CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_ADVANCE "y") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_XTAL32K_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC32K_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TOP_PD "y") +set(CONFIG_SOC_PM_SUPPORT_HP_AON_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_SW "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA "y") +set(CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG "y") +set(CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN "y") +set(CONFIG_SOC_PM_PAU_LINK_NUM "4") +set(CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR "y") +set(CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC "y") +set(CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE "y") +set(CONFIG_SOC_PM_RETENTION_MODULE_NUM "32") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED "y") +set(CONFIG_SOC_CLK_RC32K_SUPPORTED "y") +set(CONFIG_SOC_RCC_IS_INDEPENDENT "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN "y") +set(CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_HE_SUPPORT "y") +set(CONFIG_SOC_WIFI_MAC_VERSION_NUM "2") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_ESP_NIMBLE_CONTROLLER "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED "y") +set(CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") +set(CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD "y") +set(CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR "y") +set(CONFIG_SOC_LP_CORE_SUPPORT_ETM "y") +set(CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_RISCV "y") +set(CONFIG_IDF_TARGET_ARCH "riscv") +set(CONFIG_IDF_TARGET "esp32c6") +set(CONFIG_IDF_INIT_VERSION "5.4.0") +set(CONFIG_IDF_TARGET_ESP32C6 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0xd") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "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_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_RVFPLIB "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_HAS_HAL_SYSTIMER "y") +set(CONFIG_ESP_ROM_HAS_HEAP_TLSF "y") +set(CONFIG_ESP_ROM_TLSF_CHECK_PATCH "y") +set(CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_REGI2C_BUG "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT "y") +set(CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE "y") +set(CONFIG_ESP_ROM_WDT_INIT_PATCH "y") +set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_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 "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_MAX_BLK_LEN "256") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP32C6_REV_MIN_0 "y") +set(CONFIG_ESP32C6_REV_MIN_1 "") +set(CONFIG_ESP32C6_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32C6_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") +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_ADDR_UNIVERSE_IEEE802154 "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") +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_USE_DANGEROUS_RC32K_ALLOWED "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ETM_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP "y") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW "y") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM "") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH "") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL "1") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_120 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +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_SINGLE_CORE_MODE "y") +set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") +set(CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT "y") +set(CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE "") +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_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_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_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "y") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") +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_SYSTIMER_USE_ROM_IMPL "y") +set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") +set(CONFIG_HAL_ECDSA_GEN_SIG_CM "") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_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_32KB "y") +set(CONFIG_MMU_PAGE_MODE "32KB") +set(CONFIG_MMU_PAGE_SIZE "0x8000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "") +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_ADC_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_ETM_SUPPORTED;CONFIG_SOC_PARLIO_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_IEEE802154_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_LP_CORE_SUPPORTED;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_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_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_ECC_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_APM_SUPPORTED;CONFIG_SOC_PMU_SUPPORTED;CONFIG_SOC_PAU_SUPPORTED;CONFIG_SOC_LP_TIMER_SUPPORTED;CONFIG_SOC_LP_AON_SUPPORTED;CONFIG_SOC_LP_PERIPHERALS_SUPPORTED;CONFIG_SOC_LP_I2C_SUPPORTED;CONFIG_SOC_ULP_LP_UART_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_MODEM_CLOCK_SUPPORTED;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED;CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_INT_PLIC_SUPPORTED;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_CPU_HAS_PMA;CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP;CONFIG_SOC_CPU_PMP_REGION_GRANULARITY;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GDMA_SUPPORT_ETM;CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_ETM_GROUPS;CONFIG_SOC_ETM_CHANNELS_PER_GROUP;CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM;CONFIG_SOC_GPIO_SUPPORT_ETM;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH;CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LP_I2C_NUM;CONFIG_SOC_LP_I2C_FIFO_LEN;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_ETM;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX;CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE;CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_DI_VADDR_SHARED;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_PCNT_SUPPORT_RUNTIME_THRES_UPDATE;CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MCPWM_SUPPORT_ETM;CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP;CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_GROUPS;CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT;CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M;CONFIG_SOC_SDM_CLK_SUPPORT_XTAL;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M;CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_SYSTIMER_SUPPORT_ETM;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_SUPPORT_ETM;CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_SECURE_BOOT_V2_ECC;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED;CONFIG_SOC_APM_LP_APM0_SUPPORTED;CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_LP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_LP_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_HAS_LP_UART;CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_ADVANCE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_PM_SUPPORT_XTAL32K_PD;CONFIG_SOC_PM_SUPPORT_RC32K_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_TOP_PD;CONFIG_SOC_PM_SUPPORT_HP_AON_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_SW;CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA;CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG;CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN;CONFIG_SOC_PM_PAU_LINK_NUM;CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR;CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC;CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE;CONFIG_SOC_PM_RETENTION_MODULE_NUM;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED;CONFIG_SOC_CLK_RC32K_SUPPORTED;CONFIG_SOC_RCC_IS_INDEPENDENT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN;CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_HE_SUPPORT;CONFIG_SOC_WIFI_MAC_VERSION_NUM;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_ESP_NIMBLE_CONTROLLER;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED;CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD;CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR;CONFIG_SOC_LP_CORE_SUPPORT_ETM;CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32C6;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;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_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_RVFPLIB;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_HAS_HAL_SYSTIMER;CONFIG_ESP_ROM_HAS_HEAP_TLSF;CONFIG_ESP_ROM_TLSF_CHECK_PATCH;CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_REGI2C_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT;CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE;CONFIG_ESP_ROM_WDT_INIT_PATCH;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_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_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32C6_REV_MIN_0;CONFIG_ESP32C6_REV_MIN_1;CONFIG_ESP32C6_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32C6_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_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_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ETM_ENABLE_DEBUG_LOG;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_120;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT;CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE;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_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_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_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_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_SYSTIMER_USE_ROM_IMPL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HAL_ECDSA_GEN_SIG_CM;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_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_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_32KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_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_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_ESP_SYSTEM_PD_FLASH "") +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_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_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +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_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/JoystickControlServo/build/bootloader/config/sdkconfig.h b/JoystickControlServo/build/bootloader/config/sdkconfig.h new file mode 100644 index 0000000..9278009 --- /dev/null +++ b/JoystickControlServo/build/bootloader/config/sdkconfig.h @@ -0,0 +1,647 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.4.0 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_ETM_SUPPORTED 1 +#define CONFIG_SOC_PARLIO_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_IEEE802154_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_LP_CORE_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_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_SYSTIMER_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_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_ECC_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_APM_SUPPORTED 1 +#define CONFIG_SOC_PMU_SUPPORTED 1 +#define CONFIG_SOC_PAU_SUPPORTED 1 +#define CONFIG_SOC_LP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_LP_AON_SUPPORTED 1 +#define CONFIG_SOC_LP_PERIPHERALS_SUPPORTED 1 +#define CONFIG_SOC_LP_I2C_SUPPORTED 1 +#define CONFIG_SOC_ULP_LP_UART_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_RNG_SUPPORTED 1 +#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_MODEM_CLOCK_SUPPORTED 1 +#define CONFIG_SOC_PM_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_AES_SUPPORT_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 +#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 1 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 7 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED 1 +#define CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CPU_CORES_NUM 1 +#define CONFIG_SOC_CPU_INTR_NUM 32 +#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 +#define CONFIG_SOC_INT_PLIC_SUPPORTED 1 +#define CONFIG_SOC_CPU_HAS_CSR_PC 1 +#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 4 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 4 +#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 +#define CONFIG_SOC_CPU_HAS_PMA 1 +#define CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP 1 +#define CONFIG_SOC_CPU_PMP_REGION_GRANULARITY 4 +#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 +#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 +#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 +#define CONFIG_SOC_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 +#define CONFIG_SOC_GDMA_SUPPORT_ETM 1 +#define CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_ETM_GROUPS 1 +#define CONFIG_SOC_ETM_CHANNELS_PER_GROUP 50 +#define CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 31 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM 8 +#define CONFIG_SOC_GPIO_SUPPORT_ETM 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP 1 +#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 30 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 30 +#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK 0 +#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT 8 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x000000007FFFFF00 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 +#define CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_RTCIO_PIN_COUNT 8 +#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_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 1 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH 1 +#define CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_LP_I2C_NUM 1 +#define CONFIG_SOC_LP_I2C_FIFO_LEN 16 +#define CONFIG_SOC_I2S_NUM 1 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_ETM 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED 1 +#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX 16 +#define CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH 10 +#define CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE 1 +#define CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_DI_VADDR_SHARED 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE 1 +#define CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MCPWM_GROUPS 1 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MCPWM_SUPPORT_ETM 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP 1 +#define CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_PARLIO_GROUPS 1 +#define CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP 1 +#define CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP 1 +#define CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH 16 +#define CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH 16 +#define CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT 1 +#define CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 +#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 +#define CONFIG_SOC_SHA_SUPPORT_DMA 1 +#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 +#define CONFIG_SOC_SHA_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 +#define CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M 1 +#define CONFIG_SOC_SDM_CLK_SUPPORT_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_SYSTIMER_SUPPORT_ETM 1 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 +#define CONFIG_SOC_TIMER_SUPPORT_ETM 1 +#define CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 +#define CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 2 +#define CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 32768 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 +#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_SECURE_BOOT_V2_ECC 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 +#define CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED 1 +#define CONFIG_SOC_APM_LP_APM0_SUPPORTED 1 +#define CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 2 +#define CONFIG_SOC_UART_LP_NUM 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_LP_UART_FIFO_LEN 16 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_HAS_LP_UART 1 +#define CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_ADVANCE 1 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 +#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_XTAL32K_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC32K_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TOP_PD 1 +#define CONFIG_SOC_PM_SUPPORT_HP_AON_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 +#define CONFIG_SOC_PM_CPU_RETENTION_BY_SW 1 +#define CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA 1 +#define CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG 1 +#define CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN 1 +#define CONFIG_SOC_PM_PAU_LINK_NUM 4 +#define CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR 1 +#define CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC 1 +#define CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE 1 +#define CONFIG_SOC_PM_RETENTION_MODULE_NUM 32 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC32K_SUPPORTED 1 +#define CONFIG_SOC_RCC_IS_INDEPENDENT 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN 1 +#define CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_WIFI_HW_TSF 1 +#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 +#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 +#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 +#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 +#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 +#define CONFIG_SOC_WIFI_HE_SUPPORT 1 +#define CONFIG_SOC_WIFI_MAC_VERSION_NUM 2 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_ESP_NIMBLE_CONTROLLER 1 +#define CONFIG_SOC_BLE_50_SUPPORTED 1 +#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 +#define CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED 1 +#define CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 +#define CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD 1 +#define CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR 1 +#define CONFIG_SOC_LP_CORE_SUPPORT_ETM 1 +#define CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_RISCV 1 +#define CONFIG_IDF_TARGET_ARCH "riscv" +#define CONFIG_IDF_TARGET "esp32c6" +#define CONFIG_IDF_INIT_VERSION "5.4.0" +#define CONFIG_IDF_TARGET_ESP32C6 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x000D +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_RVFPLIB 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_HAS_HAL_SYSTIMER 1 +#define CONFIG_ESP_ROM_HAS_HEAP_TLSF 1 +#define CONFIG_ESP_ROM_TLSF_CHECK_PATCH 1 +#define CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_REGI2C_BUG 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT 1 +#define CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE 1 +#define CONFIG_ESP_ROM_WDT_INIT_PATCH 1 +#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM -1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP32C6_REV_MIN_0 1 +#define CONFIG_ESP32C6_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32C6_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 +#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_ADDR_UNIVERSE_IEEE802154 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 +#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_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP 1 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW 1 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 +#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_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_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_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 +#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 +#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_FREERTOS_UNICORE 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_SYSTIMER_USE_ROM_IMPL 1 +#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_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_32KB 1 +#define CONFIG_MMU_PAGE_MODE "32KB" +#define CONFIG_MMU_PAGE_SIZE 0x8000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#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_ENABLE_ENCRYPTED_READ_WRITE 1 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_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_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_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH diff --git a/JoystickControlServo/build/bootloader/config/sdkconfig.json b/JoystickControlServo/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..a8ef4c2 --- /dev/null +++ b/JoystickControlServo/build/bootloader/config/sdkconfig.json @@ -0,0 +1,778 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": false, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_OFFSET_IN_FLASH": 0, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": false, + "COMPILER_FLOAT_LIB_FROM_RVFPLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_SAVE_RESTORE_LIBCALLS": false, + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32C6_REV_MAX_FULL": 99, + "ESP32C6_REV_MIN_0": true, + "ESP32C6_REV_MIN_1": false, + "ESP32C6_REV_MIN_FULL": 0, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "80m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": true, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL": 1, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": true, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, + "ESP_DEBUG_INCLUDE_OCD_STUB_BINS": false, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_120": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_IEEE802154": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_HAL_SYSTIMER": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_HEAP_TLSF": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_REGI2C_BUG": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_RVFPLIB": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_MULTI_HEAP_WALK_PATCH": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_TLSF_CHECK_PATCH": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, + "ESP_ROM_WDT_INIT_PATCH": true, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, + "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_BROWNOUT_INTR": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_HW_PC_RECORD": true, + "ESP_SYSTEM_HW_STACK_GUARD": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_SYSTEM_PMP_IDRAM_SPLIT": true, + "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE": false, + "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "ESP_SYSTEM_SINGLE_CORE_MODE": true, + "ESP_SYSTEM_USE_EH_FRAME": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ETM_ENABLE_DEBUG_LOG": false, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "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_NUMBER_OF_CORES": 1, + "FREERTOS_OPTIMIZED_SCHEDULER": true, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": true, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_IRAM_SAFE": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_ECDSA_GEN_SIG_CM": false, + "HAL_SYSTIMER_USE_ROM_IMPL": true, + "HAL_WDT_USE_ROM_IMPL": true, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 13, + "IDF_INIT_VERSION": "5.4.0", + "IDF_TARGET": "esp32c6", + "IDF_TARGET_ARCH": "riscv", + "IDF_TARGET_ARCH_RISCV": true, + "IDF_TARGET_ESP32C6": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "MMU_PAGE_MODE": "32KB", + "MMU_PAGE_SIZE": 32768, + "MMU_PAGE_SIZE_32KB": 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, + "PARTITION_TABLE_TWO_OTA_LARGE": 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_RC": true, + "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_ECC_SUPPORTED": true, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 1, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 7, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 8, + "SOC_ADC_PERIPH_NUM": 1, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_ADC_TEMPERATURE_SHARE_INTR": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APM_CTRL_FILTER_SUPPORTED": true, + "SOC_APM_LP_APM0_SUPPORTED": true, + "SOC_APM_SUPPORTED": true, + "SOC_ASSIST_DEBUG_SUPPORTED": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED": true, + "SOC_BLE_POWER_CONTROL_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CAPS_NO_RESET_BY_ANA_BOD": true, + "SOC_CLK_OSC_SLOW_SUPPORTED": true, + "SOC_CLK_RC32K_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CLOCKOUT_HAS_SOURCE_GATE": true, + "SOC_COEX_HW_PTI": true, + "SOC_CPU_BREAKPOINTS_NUM": 4, + "SOC_CPU_CORES_NUM": 1, + "SOC_CPU_HAS_CSR_PC": true, + "SOC_CPU_HAS_FLEXIBLE_INTC": true, + "SOC_CPU_HAS_PMA": true, + "SOC_CPU_IDRAM_SPLIT_USING_PMP": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_PMP_REGION_GRANULARITY": 4, + "SOC_CPU_WATCHPOINTS_NUM": 4, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, + "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED": true, + "SOC_DEBUG_HAVE_OCD_STUB_BINS": true, + "SOC_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, + "SOC_ECC_SUPPORTED": true, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_PAD_JTAG": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_ESP_NIMBLE_CONTROLLER": true, + "SOC_ETM_CHANNELS_PER_GROUP": 50, + "SOC_ETM_GROUPS": 1, + "SOC_ETM_SUPPORTED": true, + "SOC_ETM_SUPPORT_SLEEP_RETENTION": true, + "SOC_EXTERNAL_COEX_ADVANCE": true, + "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, + "SOC_GDMA_SUPPORTED": true, + "SOC_GDMA_SUPPORT_ETM": true, + "SOC_GDMA_SUPPORT_SLEEP_RETENTION": true, + "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 8, + "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, + "SOC_GPIO_FLEX_GLITCH_FILTER_NUM": 8, + "SOC_GPIO_IN_RANGE_MAX": 30, + "SOC_GPIO_OUT_RANGE_MAX": 30, + "SOC_GPIO_PIN_COUNT": 31, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, + "SOC_GPIO_SUPPORT_ETM": true, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 2147483392, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_I2C_NUM": 1, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_HW_FSM_RST": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_SLEEP_RETENTION": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_ETM": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_I2S_SUPPORT_SLEEP_RETENTION": true, + "SOC_IEEE802154_SUPPORTED": true, + "SOC_INT_PLIC_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 6, + "SOC_LEDC_FADE_PARAMS_BIT_WIDTH": 10, + "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX": 16, + "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK": true, + "SOC_LEDC_SUPPORT_SLEEP_RETENTION": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_AON_SUPPORTED": true, + "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR": true, + "SOC_LP_CORE_SUPPORTED": true, + "SOC_LP_CORE_SUPPORT_ETM": true, + "SOC_LP_I2C_FIFO_LEN": 16, + "SOC_LP_I2C_NUM": 1, + "SOC_LP_I2C_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPHERALS_SUPPORTED": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_LP_TIMER_SUPPORTED": true, + "SOC_LP_UART_FIFO_LEN": 16, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP": true, + "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": 1, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SUPPORT_ETM": true, + "SOC_MCPWM_SUPPORT_SLEEP_RETENTION": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_DI_VADDR_SHARED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED": true, + "SOC_MMU_PAGE_SIZE_CONFIGURABLE": true, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MODEM_CLOCK_IS_INDEPENDENT": true, + "SOC_MODEM_CLOCK_SUPPORTED": true, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MWDT_SUPPORT_SLEEP_RETENTION": true, + "SOC_MWDT_SUPPORT_XTAL": true, + "SOC_PARLIO_GROUPS": 1, + "SOC_PARLIO_RX_UNITS_PER_GROUP": 1, + "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH": 16, + "SOC_PARLIO_SUPPORTED": true, + "SOC_PARLIO_SUPPORT_SLEEP_RETENTION": true, + "SOC_PARLIO_TX_RX_SHARE_INTERRUPT": true, + "SOC_PARLIO_TX_UNITS_PER_GROUP": 1, + "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH": 16, + "SOC_PAU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE": true, + "SOC_PCNT_SUPPORT_SLEEP_RETENTION": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PMU_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_REGDMA": true, + "SOC_PM_PAU_LINK_NUM": 4, + "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR": true, + "SOC_PM_PAU_REGDMA_LINK_WIFIMAC": true, + "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE": true, + "SOC_PM_RETENTION_HAS_CLOCK_BUG": true, + "SOC_PM_RETENTION_MODULE_NUM": 32, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BEACON_WAKEUP": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN": true, + "SOC_PM_SUPPORT_HP_AON_PD": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_PMU_MODEM_STATE": true, + "SOC_PM_SUPPORT_RC32K_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TOP_PD": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PM_SUPPORT_XTAL32K_PD": true, + "SOC_RCC_IS_INDEPENDENT": true, + "SOC_RMT_CHANNELS_PER_GROUP": 4, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_SLEEP_RETENTION": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, + "SOC_RNG_CLOCK_IS_INDEPENDENT": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 3072, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 8, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDM_CHANNELS_PER_GROUP": 4, + "SOC_SDM_CLK_SUPPORT_PLL_F80M": true, + "SOC_SDM_CLK_SUPPORT_XTAL": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_ECC": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, + "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 2, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_PLL_F80M": true, + "SOC_SPI_SUPPORT_CLK_RC_FAST": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SPI_SUPPORT_SLEEP_RETENTION": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_SYSTIMER_SUPPORT_ETM": true, + "SOC_SYSTIMER_SUPPORT_RC_FAST": true, + "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, + "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_RC_FAST": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, + "SOC_TIMER_SUPPORT_ETM": true, + "SOC_TIMER_SUPPORT_SLEEP_RETENTION": true, + "SOC_TWAI_BRP_MAX": 32768, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_XTAL": true, + "SOC_TWAI_CONTROLLER_NUM": 2, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_TWAI_SUPPORT_SLEEP_RETENTION": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HAS_LP_UART": true, + "SOC_UART_HP_NUM": 2, + "SOC_UART_LP_NUM": 1, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_PLL_F80M_CLK": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_SLEEP_RETENTION": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_ULP_LP_UART_SUPPORTED": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HE_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MAC_VERSION_NUM": 2, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SPI_FLASH_AUTO_SUSPEND": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": false, + "SPI_FLASH_SUPPORT_ISSI_CHIP": false, + "SPI_FLASH_SUPPORT_MXIC_CHIP": false, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": false, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "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_40": true +} \ No newline at end of file diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..15c5c50 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..777ab78 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj new file mode 100644 index 0000000..47f43e0 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/JoystickControlServo/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..7a7cd1d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..f74c8ce Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj new file mode 100644 index 0000000..887ebfa Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..577464d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..49a9020 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj new file mode 100644 index 0000000..2a5f09f Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj new file mode 100644 index 0000000..e0be536 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..8b9aed3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj new file mode 100644 index 0000000..46d0916 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..f108d00 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj new file mode 100644 index 0000000..4f2d633 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..6c6eea4 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj new file mode 100644 index 0000000..697ea12 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..d2e5d0a Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj new file mode 100644 index 0000000..7eac939 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_ecdsa.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj new file mode 100644 index 0000000..164d2e4 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_sha.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_sha.c.obj new file mode 100644 index 0000000..06fbc6c Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_sha.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj new file mode 100644 index 0000000..7604890 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/bootloader_soc.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..2bbc9fd Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..57dedca Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..628b4c3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..1ac59e9 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..1c160a2 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..4be693e Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..2ed381c --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,144 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/riscv/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj new file mode 100644 index 0000000..fcdd362 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj new file mode 100644 index 0000000..c6ca3fc Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj new file mode 100644 index 0000000..005414d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj new file mode 100644 index 0000000..278ce8f Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..4b40858 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..b3b7643 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..4d590e7 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..7704e77 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..c242ee8 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/efuse/libefuse.a b/JoystickControlServo/build/bootloader/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..06cb4a1 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/efuse/libefuse.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..f017bcd --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..45e0bb2 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..051c833 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..7db5344 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..575f843 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..2579bb1 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_common/libesp_common.a b/JoystickControlServo/build/bootloader/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..7915aaf Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_common/libesp_common.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..0403e9b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..5109c5a Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj new file mode 100644 index 0000000..019e176 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj new file mode 100644 index 0000000..de23785 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj new file mode 100644 index 0000000..4c83ed9 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj new file mode 100644 index 0000000..bfc3566 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj new file mode 100644 index 0000000..ad75fc3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj new file mode 100644 index 0000000..9cd2c7e Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj new file mode 100644 index 0000000..e49b270 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj new file mode 100644 index 0000000..2abe844 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj new file mode 100644 index 0000000..4749d7a Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj new file mode 100644 index 0000000..55a8b71 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..0af515b --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..5c11ba3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..f32aae3 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake new file mode 100644 index 0000000..3355b31 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..60d9f67 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..b851dba Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..465b99b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj new file mode 100644 index 0000000..c8730e9 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..744dbb6 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..5852914 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..c930074 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj new file mode 100644 index 0000000..ec60f40 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..794af73 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj new file mode 100644 index 0000000..c1846d5 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..61f1ef8 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_rom/libesp_rom.a b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..0537c30 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_rom/libesp_rom.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_security/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..13a2581 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..84a8cd9 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..dfc2df1 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/esp_system/libesp_system.a b/JoystickControlServo/build/bootloader/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..4a8c670 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/esp_system/libesp_system.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..17396a9 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/freertos/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..3b4672d --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..3fd3ef9 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..b03705f Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj new file mode 100644 index 0000000..c2650a4 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..7bbb311 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj new file mode 100644 index 0000000..6fb545d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..a81867c Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..e607d67 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/hal/libhal.a b/JoystickControlServo/build/bootloader/esp-idf/hal/libhal.a new file mode 100644 index 0000000..2a0f925 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/hal/libhal.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj new file mode 100644 index 0000000..730a9cc Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj new file mode 100644 index 0000000..ecaf11f Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj new file mode 100644 index 0000000..825220c Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/log/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..2e3485c --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/log/liblog.a b/JoystickControlServo/build/bootloader/esp-idf/log/liblog.a new file mode 100644 index 0000000..5e21ab4 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/log/liblog.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj new file mode 100644 index 0000000..0c75ac1 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/main/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..57f02c5 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/main/libmain.a b/JoystickControlServo/build/bootloader/esp-idf/main/libmain.a new file mode 100644 index 0000000..182153b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/main/libmain.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj new file mode 100644 index 0000000..0ac9a4e Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake new file mode 100644 index 0000000..bf35cb9 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a new file mode 100644 index 0000000..d3cc101 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/newlib/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..05c227e --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..f5f58e4 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/riscv/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/riscv/cmake_install.cmake new file mode 100644 index 0000000..7b261b3 --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/riscv/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/riscv + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..24dd9e4 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj new file mode 100644 index 0000000..204fb3e Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj new file mode 100644 index 0000000..5301ac5 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj new file mode 100644 index 0000000..315e34b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj new file mode 100644 index 0000000..43db28a Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj new file mode 100644 index 0000000..2972bbd Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj new file mode 100644 index 0000000..75ff08e Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj new file mode 100644 index 0000000..a7c0e33 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj new file mode 100644 index 0000000..1b28712 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj new file mode 100644 index 0000000..b97096b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj new file mode 100644 index 0000000..48ffa16 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj new file mode 100644 index 0000000..b04673d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj new file mode 100644 index 0000000..1b9b645 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj new file mode 100644 index 0000000..44e3796 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj new file mode 100644 index 0000000..1d1c7a3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj new file mode 100644 index 0000000..46aa516 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj new file mode 100644 index 0000000..5f658d1 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj new file mode 100644 index 0000000..29dd410 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj new file mode 100644 index 0000000..bb6ec7f Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj new file mode 100644 index 0000000..748681c Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj new file mode 100644 index 0000000..0db125b Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..4764ae8 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj new file mode 100644 index 0000000..0c838fa Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj new file mode 100644 index 0000000..1f8b182 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj new file mode 100644 index 0000000..022c991 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj new file mode 100644 index 0000000..53e3479 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..db9756d Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..9fbd0fc --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/soc/libsoc.a b/JoystickControlServo/build/bootloader/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..470b539 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/soc/libsoc.a differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..65a1b38 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/JoystickControlServo/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..95f6f9e --- /dev/null +++ b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/bootloader/esp-idf/spi_flash/libspi_flash.a b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..1378ea3 Binary files /dev/null and b/JoystickControlServo/build/bootloader/esp-idf/spi_flash/libspi_flash.a differ diff --git a/JoystickControlServo/build/bootloader/kconfigs.in b/JoystickControlServo/build/bootloader/kconfigs.in new file mode 100644 index 0000000..7ce510f --- /dev/null +++ b/JoystickControlServo/build/bootloader/kconfigs.in @@ -0,0 +1,11 @@ +source "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/JoystickControlServo/build/bootloader/kconfigs_projbuild.in b/JoystickControlServo/build/bootloader/kconfigs_projbuild.in new file mode 100644 index 0000000..790c080 --- /dev/null +++ b/JoystickControlServo/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/JoystickControlServo/build/bootloader/project_description.json b/JoystickControlServo/build/bootloader/project_description.json new file mode 100644 index 0000000..907d665 --- /dev/null +++ b/JoystickControlServo/build/bootloader/project_description.json @@ -0,0 +1,1634 @@ +{ + "version": "1.1", + "project_name": "bootloader", + "project_version": "v5.4", + "project_path": "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject", + "idf_path": "C:/Users/famil/esp/v5.4/esp-idf", + "build_dir": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", + "config_file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "build_type": "flash_app", + "git_revision": "v5.4", + "target": "esp32c6", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "riscv32-esp-elf-", + "c_compiler": "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "newlib", "riscv" ], + "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_hw_support", "esp_rom", "esp_security", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "riscv", "soc", "spi_flash", "" ], + "build_component_paths" : [ "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system", "C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos", "C:/Users/famil/esp/v5.4/esp-idf/components/hal", "C:/Users/famil/esp/v5.4/esp-idf/components/log", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/main", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib", "C:/Users/famil/esp/v5.4/esp-idf/components/partition_table", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv", "C:/Users/famil/esp/v5.4/esp-idf/components/soc", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_console.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_sha.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_soc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/bootloader_ecdsa.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_fields.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_rtc_calib.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32c6/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "hal", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_cpu_intr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/cpu_region_protect.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_param.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_sleep.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_time.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/chip_info.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/ocode_init.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32c6", "dma/include", "ldo/include", "debug_probe/include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_hp_regi2c_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_wdt.c" ], + "include_dirs": [ "include", "esp32c6/include", "esp32c6/include/esp32c6", "esp32c6" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/hal/hal_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/efuse_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/efuse_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/lp_timer_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/mmu_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/cache_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32c6/include", "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/noos/log_timestamp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/noos/log_lock.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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": [] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/riscv", + "type": "CONFIG_ONLY", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/soc/lldesc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/dport_access_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/interrupts.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gpio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/uart_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/adc_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/dedic_gpio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/etm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gdma_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/spi_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ledc_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/pcnt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rmt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2s_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2c_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/temperature_sensor_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/timer_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/parlio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mcpwm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mpi_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/twai_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/wdt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ieee802154_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rtc_io_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdio_slave_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/system_retention_periph.c" ], + "include_dirs": [ "include", "esp32c6", "esp32c6/include", "esp32c6/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_wrap.c" ], + "include_dirs": [ "include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32c6/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "hal", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32c6", "dma/include", "ldo/include", "debug_probe/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [ "spi_flash" ], + "priv_reqs": [ "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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", "esp32c6/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6/include", "esp32c6/include/esp32c6", "esp32c6" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32c6/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32c6" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/log", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/perfmon", + "lib": "__idf_perfmon", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/rt", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6", "esp32c6/include", "esp32c6/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/JoystickControlServo/build/bootloader/project_elf_src_esp32c6.c b/JoystickControlServo/build/bootloader/project_elf_src_esp32c6.c new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/build.ninja b/JoystickControlServo/build/build.ninja new file mode 100644 index 0000000..9b0087f --- /dev/null +++ b/JoystickControlServo/build/build.ninja @@ -0,0 +1,21786 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: JoystickControlServo +# 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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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 JoystickControlServo.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary + + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin bootloader gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor JoystickControlServo.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_esp32c6.c + +# ============================================================================= +# Object build statements for EXECUTABLE target JoystickControlServo.elf + + +############################################# +# Order-only phony target for JoystickControlServo.elf + +build cmake_object_order_depends_target_JoystickControlServo.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_driver_cam cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_https_server 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_fatfs cmake_object_order_depends_target___idf_ieee802154 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_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_rt 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 esp-idf/esp_system/__ldgen_output_sections.ld project_elf_src_esp32c6.c + +build CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj: C_COMPILER__JoystickControlServo.2eelf_unscanned_ C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/project_elf_src_esp32c6.c || cmake_object_order_depends_target_JoystickControlServo.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\JoystickControlServo.elf.dir\project_elf_src_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always + INCLUDES = -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/idf_test/include -IC:/Users/famil/esp/v5.4/esp-idf/components/idf_test/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = CMakeFiles\JoystickControlServo.elf.dir + OBJECT_FILE_DIR = CMakeFiles\JoystickControlServo.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\JoystickControlServo.elf.dir\ + TARGET_PDB = JoystickControlServo.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target JoystickControlServo.elf + + +############################################# +# Link the executable JoystickControlServo.elf + +build JoystickControlServo.elf: CXX_EXECUTABLE_LINKER__JoystickControlServo.2eelf_ CMakeFiles/JoystickControlServo.elf.dir/project_elf_src_esp32c6.c.obj | esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_cam/libesp_driver_cam.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_https_server/libesp_https_server.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/fatfs/libfatfs.a esp-idf/ieee802154/libieee802154.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/app_trace/libapp_trace.a esp-idf/unity/libunity.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wear_levelling/libwear_levelling.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/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.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 C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/ld/rom.api.ld esp-idf/esp_system/ld/memory.ld esp-idf/esp_system/ld/sections.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.api.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.rvfp.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.wdt.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.systimer.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.version.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.phy.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.coexist.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.net80211.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.pp.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib-normal.ld C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.heap.ld C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ld/esp32c6.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_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.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/fatfs/libfatfs.a esp-idf/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + FLAGS = -march=rv32imac_zicsr_zifencei + LINK_FLAGS = -nostartfiles -march=rv32imac_zicsr_zifencei --specs=nosys.specs -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C6=0 -Wl,--Map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T rom.api.ld -T esp32c6.peripherals.ld -T esp32c6.rom.ld -T esp32c6.rom.api.ld -T esp32c6.rom.rvfp.ld -T esp32c6.rom.wdt.ld -T esp32c6.rom.systimer.ld -T esp32c6.rom.version.ld -T esp32c6.rom.phy.ld -T esp32c6.rom.coexist.ld -T esp32c6.rom.net80211.ld -T esp32c6.rom.pp.ld -T esp32c6.rom.newlib.ld -T esp32c6.rom.newlib-normal.ld -T esp32c6.rom.heap.ld -T memory.ld -T sections.ld + LINK_LIBRARIES = esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_cam/libesp_driver_cam.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_https_server/libesp_https_server.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/fatfs/libfatfs.a esp-idf/ieee802154/libieee802154.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/app_trace/libapp_trace.a esp-idf/unity/libunity.a esp-idf/esp_https_server/libesp_https_server.a -u esp_system_include_coredump_init esp-idf/wear_levelling/libwear_levelling.a -u nvs_sec_provider_include_impl esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_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/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6/libcoexist.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libcore.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libespnow.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libmesh.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libnet80211.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libpp.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libsmartconfig.a C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6/libwapi.a -u esp_app_desc -u esp_efuse_startup_include_func -u start_app -u __ubsan_include -u esp_system_include_startup_funcs -u tlsf_set_rom_patches -u esp_rom_include_multi_heap_patch -u __assert_func -u esp_security_init_include_impl -u rv_core_critical_regs_save -u rv_core_critical_regs_restore -u esp_sleep_gpio_include -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 -u newlib_include_getentropy_impl -u newlib_include_init_funcs -u pthread_include_pthread_impl -u pthread_include_pthread_cond_var_impl -u pthread_include_pthread_local_storage_impl -u pthread_include_pthread_rwlock_impl -u pthread_include_pthread_semaphore_impl -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--wrap=__gxx_personality_v0 -Wl,--wrap=__cxa_throw -Wl,--wrap=__cxa_allocate_exception -u __cxa_guard_dummy -u __cxx_init_dummy -lstdc++ esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -u esp_timer_init_include_func -u uart_vfs_include_dev_init -u usb_serial_jtag_vfs_include_dev_init -u usb_serial_jtag_connection_monitor_include -u include_esp_phy_override -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb -u esp_vfs_include_console_register -u vfs_include_syscalls_impl -u esp_vfs_include_nullfs_register + LINK_PATH = -LC:/Users/famil/esp/v5.4/esp-idf/components/riscv/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld -LC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld -LC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/esp32c6 -LC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/esp32c6 -LC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/esp32c6 + OBJECT_DIR = CMakeFiles\JoystickControlServo.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\JoystickControlServo.elf.dir\ + TARGET_FILE = JoystickControlServo.elf + TARGET_PDB = JoystickControlServo.elf.pdb + RSP_FILE = CMakeFiles\JoystickControlServo.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 uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env --env IDF_TARGET=esp32c6 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.0 --dont-write-deprecated --output config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/check_term.py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig IDF_TARGET=esp32c6 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.4.0 C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env --env IDF_TARGET=esp32c6 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.0 --output config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --sdkconfig-rename C:/Users/famil/esp/v5.4/esp-idf/sdkconfig.rename --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env --dont-write-deprecated --output savedefconfig C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig.defaults" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\bootloader + +build CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin + + +############################################# +# Custom command for CMakeFiles\bootloader-complete + +build CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done | ${cmake_ninja_workdir}CMakeFiles/bootloader-complete ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E make_directory C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/CMakeFiles/bootloader-complete && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-done" + DESC = Completed 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-build + +build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-build ${cmake_ninja_workdir}bootloader/bootloader.elf ${cmake_ninja_workdir}bootloader/bootloader.bin ${cmake_ninja_workdir}bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --build ." + DESC = Performing build step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-configure + +build bootloader-prefix/src/bootloader-stamp/bootloader-configure | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DSDKCONFIG=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig -DIDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -DIDF_TARGET=esp32c6 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=C:/Users/famil/esp/v5.4/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo -DIGNORE_EXTRA_COMPONENT= -GNinja -S C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject -B C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure" + DESC = Performing configure step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-download + +build bootloader-prefix/src/bootloader-stamp/bootloader-download | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-download" + DESC = No download step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-install + +build bootloader-prefix/src/bootloader-stamp/bootloader-install | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append" + DESC = No install step for 'bootloader' + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-mkdir + +build bootloader-prefix/src/bootloader-stamp/bootloader-mkdir | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -Dcfgdir= -P C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir" + DESC = Creating directories for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-patch + +build bootloader-prefix/src/bootloader-stamp/bootloader-patch | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch" + DESC = No patch step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-update + +build bootloader-prefix/src/bootloader-stamp/bootloader-update | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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 || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND JoystickControlServo.elf || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32c6 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --elf-sha256-offset 0xb0 --flash-mmu-page-size 32KB --min-rev-full 0 --max-rev-full 99 -o C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.bin C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.elf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.bin" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.bin > C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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 || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 gen_project_binary + + +############################################# +# Custom command for CMakeFiles\erase_flash + +build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\merge-bin + +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || JoystickControlServo.elf _project_elf_src 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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=merge_bin;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/merged-binary.bin;@C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32c6;;--revision;0;;--decode-panic;backtrace;;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.elf -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\flash + +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\encrypted-flash + +build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/famil/esp/v5.4/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_esp32c6.c + + +############################################# +# Custom command for project_elf_src_esp32c6.c + +build project_elf_src_esp32c6.c | ${cmake_ninja_workdir}project_elf_src_esp32c6.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/project_elf_src_esp32c6.c" + DESC = Generating project_elf_src_esp32c6.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND JoystickControlServo.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/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 JoystickControlServo.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/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 JoystickControlServo.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.map -D OUTPUT_JSON= -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D UF2_CMD=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;C:/Users/famil/esp/v5.4/esp-idf/tools/mkuf2.py;write;--chip;esp32c6 -D UF2_ARGS=--json;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/flasher_args.json;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/uf2.bin -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D UF2_CMD=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;C:/Users/famil/esp/v5.4/esp-idf/tools/mkuf2.py;write;--chip;esp32c6 -D UF2_ARGS=--json;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/flasher_args.json;-o;C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/uf2-app.bin;--bin;app -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/install: phony esp-idf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_riscv + + +############################################# +# Order-only phony target for __idf_riscv + +build cmake_object_order_depends_target___idf_riscv: phony || cmake_object_order_depends_target___idf_esp_driver_gpio + +build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/instruction_decode.c || cmake_object_order_depends_target___idf_riscv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\instruction_decode.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_PDB = esp-idf\riscv\libriscv.pdb + +build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/interrupt.c || cmake_object_order_depends_target___idf_riscv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\interrupt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_PDB = esp-idf\riscv\libriscv.pdb + +build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj: ASM_COMPILER____idf_riscv_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/vectors.S || cmake_object_order_depends_target___idf_riscv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\vectors.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_PDB = esp-idf\riscv\libriscv.pdb + +build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/interrupt_plic.c || cmake_object_order_depends_target___idf_riscv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\interrupt_plic.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_PDB = esp-idf\riscv\libriscv.pdb + +build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj: ASM_COMPILER____idf_riscv_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/vectors_intc.S || cmake_object_order_depends_target___idf_riscv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\vectors_intc.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_PDB = esp-idf\riscv\libriscv.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_riscv + + +############################################# +# Link the static library esp-idf\riscv\libriscv.a + +build esp-idf/riscv/libriscv.a: C_STATIC_LIBRARY_LINKER____idf_riscv_ esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj || esp-idf/esp_driver_gpio/libesp_driver_gpio.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb + TARGET_FILE = esp-idf\riscv\libriscv.a + TARGET_PDB = esp-idf\riscv\libriscv.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/riscv/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/riscv/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/riscv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/riscv/install: phony esp-idf/riscv/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/riscv/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/riscv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/riscv/install/local: phony esp-idf/riscv/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/riscv/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/riscv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\riscv && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/riscv/install/strip: phony esp-idf/riscv/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Order-only phony target for __idf_esp_driver_gpio + +build cmake_object_order_depends_target___idf_esp_driver_gpio: phony || cmake_object_order_depends_target___idf_esp_pm + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_glitch_filter_ops.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\rtc_io.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\dedic_gpio.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_pin_glitch_filter.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_flex_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_flex_glitch_filter.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_etm.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Link the static library esp-idf\esp_driver_gpio\libesp_driver_gpio.a + +build esp-idf/esp_driver_gpio/libesp_driver_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_FILE = esp-idf\esp_driver_gpio\libesp_driver_gpio.a + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gpio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/edit_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gpio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/rebuild_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gpio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gpio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install: phony esp-idf/esp_driver_gpio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gpio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/local: phony esp-idf/esp_driver_gpio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gpio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/strip: phony esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Order-only phony target for __idf_esp_pm + +build cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_mbedtls + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Link the static library esp-idf\esp_pm\libesp_pm.a + +build esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj || esp-idf/mbedtls/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_FILE = esp-idf\esp_pm\libesp_pm.a + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_pm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_pm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_pm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_pm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_pm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_pm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Order-only phony target for __idf_mbedtls + +build cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__ + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\libmbedtls.a + +build esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj || esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +############################################# +# Utility command for custom_bundle + +build esp-idf/mbedtls/custom_bundle: phony + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for x509_crt_bundle.S + +build x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle C$:/Users/famil/esp/v5.4/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/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_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.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/sdmmc/libsdmmc.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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D DATA_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/Users/famil/esp/v5.4/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/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_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.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/sdmmc/libsdmmc.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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q --max-certs 200" + DESC = Generating x509_crt_bundle + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for apidoc + +build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\mbedtls\mbedtls\CMakeFiles\apidoc + +build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\include && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\include && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/include/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\include && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\include && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\include && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target everest + + +############################################# +# Order-only phony target for everest + +build cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target everest + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target p256m + + +############################################# +# Order-only phony target for p256m + +build cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_mbedcrypto + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target p256m + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Order-only phony target for mbedcrypto + +build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma\esp_sha_gdma_impl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma\esp_aes_gdma_impl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma\esp_aes_dma_core.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\crypto_shared_gdma\esp_crypto_shared_gdma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\crypto_shared_gdma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma\esp_aes.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma\sha.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_sign_alt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma\esp_sha1.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma\esp_sha256.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma\esp_sha512.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\sha\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\ecc\esp_ecc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\ecc + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\ecc\ecc_alt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\ecc + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\md\esp_md.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\famil\esp\v5.4\esp-idf\components\mbedtls\port\md + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + +build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + RSP_FILE = CMakeFiles\mbedcrypto.rsp + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Order-only phony target for mbedx509 + +build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a + +build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Order-only phony target for mbedtls + +build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_esp_app_format + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\famil\esp\v5.4\esp-idf\components\mbedtls\port\net_sockets.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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\famil\esp\v5.4\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a + +build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +############################################# +# Utility command for lib + +build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/riscv/libriscv.a + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\library && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\library && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/library/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\library && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\library && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\library && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\mbedtls\mbedtls\library\CMakeFiles\lib + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/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_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.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/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.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 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/pkgconfig/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader-flash + +build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader + + +############################################# +# Utility command for encrypted-bootloader-flash + +build esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\bootloader\CMakeFiles\bootloader-flash + +build esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\bootloader\CMakeFiles\encrypted-bootloader-flash + +build esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for app-flash + +build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app + + +############################################# +# Utility command for encrypted-app-flash + +build esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash + + +############################################# +# Utility command for app_check_size + +build esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esptool_py/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\app-flash + +build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\encrypted-app-flash + +build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/famil/esp/v5.4/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 || JoystickControlServo.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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.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_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esptool_py && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/partition_table/partition-table.bin C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/JoystickControlServo.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for partition_table_bin + +build esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin + + +############################################# +# Utility command for partition-table + +build esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for partition_table + +build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table + + +############################################# +# Utility command for partition-table-flash + +build esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash + + +############################################# +# Utility command for encrypted-partition-table-flash + +build esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash + + +############################################# +# Utility command for partition_table-flash + +build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/partition_table/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\partition_table\CMakeFiles\partition_table_bin + +build esp-idf/partition_table/CMakeFiles/partition_table_bin | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table_bin: phony partition_table/partition-table.bin partition_table/partition-table.bin + + +############################################# +# Custom command for partition_table\partition-table.bin + +build partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/partitions_singleapp.csv C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/partition_table/partition-table.bin && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/partition_table/partition-table.bin && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" + DESC = Generating ../../partition_table/partition-table.bin + restat = 1 + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition-table + +build esp-idf/partition_table/CMakeFiles/partition-table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/partition_table/partition-table.bin && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table + +build esp-idf/partition_table/CMakeFiles/partition_table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table: CUSTOM_COMMAND || esp-idf/partition_table/partition-table esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table" is deprecated. Have you wanted to run "partition-table" instead? + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition-table-flash + +build esp-idf/partition_table/CMakeFiles/partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\esp\v5.4\esp-idf\components\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/famil/esp/v5.4/esp-idf -D SERIAL_TOOL=C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe;;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c6 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build -P C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\encrypted-partition-table-flash + +build esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/famil/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/famil/esp/v5.4/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table-flash + +build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND || esp-idf/partition_table/partition-table-flash + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\partition_table && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table-flash" is deprecated. Have you wanted to run "partition-table-flash" instead? + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Order-only phony target for __idf_esp_app_format + +build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\"JoystickControlServo\" -DPROJECT_VER=\"268dbb0\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Link the static library esp-idf\esp_app_format\libesp_app_format.a + +build esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_FILE = esp-idf\esp_app_format\libesp_app_format.a + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_app_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_app_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_app_update + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_bootloader_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_bootloader_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install: phony esp-idf/esp_bootloader_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_bootloader_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/local: phony esp-idf/esp_bootloader_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_bootloader_format && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/strip: phony esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Order-only phony target for __idf_app_update + +build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_partition + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Link the static library esp-idf\app_update\libapp_update.a + +build esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_update_ esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_FILE = esp-idf\app_update\libapp_update.a + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_update && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_update && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/app_update/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_update && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_update && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_update && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Order-only phony target for __idf_esp_partition + +build cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Link the static library esp-idf\esp_partition\libesp_partition.a + +build esp-idf/esp_partition/libesp_partition.a: C_STATIC_LIBRARY_LINKER____idf_esp_partition_ esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_FILE = esp-idf\esp_partition\libesp_partition.a + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_partition && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_partition && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_partition/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_partition && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_partition && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_partition && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\esp_efuse_table.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\esp_efuse_fields.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\esp_efuse_rtc_calib.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\esp_efuse_utility.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_startup.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/efuse/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.csv -t esp32c6 --max_blk_len 256" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.csv -t esp32c6 --max_blk_len 256 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\efuse && C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/components/efuse/efuse_table_gen.py C:/Users/famil/esp/v5.4/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32c6 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_esp_mm + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random_esp32c6.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c6.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\secure_boot_secure_features.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.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_esp32c6.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/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj || esp-idf/esp_mm/libesp_mm.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bootloader_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Order-only phony target for __idf_esp_mm + +build cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/port/esp32c6/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\ext_mem_layout.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/esp_cache.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\heap_align_hw.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Link the static library esp-idf\esp_mm\libesp_mm.a + +build esp-idf/esp_mm/libesp_mm.a: C_STATIC_LIBRARY_LINKER____idf_esp_mm_ esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/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/heap_align_hw.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_FILE = esp-idf\esp_mm\libesp_mm.a + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_mm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_mm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_mm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_mm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_mm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_mm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_system + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/spi_flash/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spi_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup_funcs.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/systick_etm.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\systick_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/hw_stack_guard.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\hw_stack_guard.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\image_process.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\expression_with_stack.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\panic_arch.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\debug_helpers.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\debug_stubs.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\clk.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\reset_reason.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\system_internal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\cache_err_int.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for memory.ld + +build esp-idf/esp_system/memory.ld: phony esp-idf/esp_system/CMakeFiles/memory.ld esp-idf/esp_system/ld/memory.ld + + +############################################# +# Utility command for sections.ld.in + +build esp-idf/esp_system/sections.ld.in: phony esp-idf/esp_system/CMakeFiles/sections.ld.in esp-idf/esp_system/ld/sections.ld.in + + +############################################# +# Utility command for __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_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\memory.ld + +build esp-idf/esp_system/CMakeFiles/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory.ld: phony esp-idf/esp_system/ld/memory.ld + + +############################################# +# Custom command for esp-idf\esp_system\ld\memory.ld + +build esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld/esp32c6/memory.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe -DSOURCE=C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld/esp32c6/memory.ld.in -DTARGET=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -DLD_DIR=C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld -P C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/esp/v5.4/esp-idf/components/esp_system/ld/esp32c6/sections.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe -DSOURCE=C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld/esp32c6/sections.ld.in -DTARGET=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -DLD_DIR=C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld -P C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + + +############################################# +# 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/famil/esp/v5.4/esp-idf/components/riscv/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/app.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/common.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/soc.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/hal/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/log/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/heap/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/soc/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/linker_common.lf C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/newlib.lf C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/system_libs.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/linker.lf C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/linker.lf esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_cam/libesp_driver_cam.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_https_server/libesp_https_server.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/fatfs/libfatfs.a esp-idf/ieee802154/libieee802154.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_https_server/libesp_https_server.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_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.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/ieee802154/libieee802154.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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.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 + COMMAND = esp-idf\esp_system\CMakeFiles\sections.ld-d65dc84.bat d591e517be19b0b8 + DESC = Generating ld/sections.ld + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port\soc\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32c6/edit_cache: phony esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port\soc\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32c6/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/soc/esp32c6/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port\soc\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32c6/install: phony esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port\soc\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32c6/install/local: phony esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\port\soc\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32c6/install/strip: phony esp-idf/esp_system/port/soc/esp32c6/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_common/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_common && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_hp_regi2c_esp32c6.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_hp_regi2c_esp32c6.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_tlsf.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_tlsf.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_multi_heap.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_multi_heap.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_rom/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_rom && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\efuse_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/lp_timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\lp_timer_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\color_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/clk_tree_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\clk_tree_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/gdma_hal_top.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_top.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/gdma_hal_ahb_v1.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_ahb_v1.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/etm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\etm_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/parlio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\parlio_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/ecc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\ecc_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/modem_clock_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/modem_clock_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\modem_clock_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/pau_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\pau_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hd_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_gpspi.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/pmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\pmu_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/apm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\apm_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hmac_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ds_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/hal/usb_serial_jtag_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_serial_jtag_hal.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/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/gdma_hal_top.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_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/ecc_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/esp32c6/modem_clock_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/hal/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\hal && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_timestamp.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_lock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_write.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\buffer + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\log_level.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\tag_log_level.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\log_level\tag_log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list\log_linked_list.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\log_level\tag_log_level\linked_list + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache\log_binary_heap.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\src\log_level\tag_log_level\cache + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/log/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\log && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Order-only phony target for __idf_heap + +build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_base.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/heap/port/esp32c6/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\memory_layout.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Link the static library esp-idf\heap\libheap.a + +build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_FILE = esp-idf\heap\libheap.a + TARGET_PDB = esp-idf\heap\libheap.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\heap && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\heap && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/heap/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\heap && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\heap && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\heap && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_security + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\interrupts.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\gpio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\uart_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\adc_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\dedic_gpio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/etm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\etm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\gdma_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\spi_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\ledc_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\pcnt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\rmt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\sdm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\i2s_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\i2c_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\temperature_sensor_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\timer_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/parlio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\parlio_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\mcpwm_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\mpi_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\twai_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\wdt_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ieee802154_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\ieee802154_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\rtc_io_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\sdio_slave_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/system_retention_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32c6\system_retention_periph.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj || esp-idf/esp_security/libesp_security.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\soc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Order-only phony target for __idf_esp_security + +build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_hmac.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_hmac.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_ds.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_ds.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_dpa_protection.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_dpa_protection.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Link the static library esp-idf\esp_security\libesp_security.a + +build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_FILE = esp-idf\esp_security\libesp_security.a + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_security/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_security/install: phony esp-idf/esp_security/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_security/install/local: phony esp-idf/esp_security/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_security && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_security/install/strip: phony esp-idf/esp_security/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\esp_cpu_intr.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\cpu_region_protect.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\io_mux.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\esp_clk_tree.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_link.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_share_hw_ctrl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_bus_lock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_retention.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_retention.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_system_peripheral.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_system_peripheral.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated\gdma_legacy.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_sleep_retention.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_sleep_retention.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_etm.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_async_memcpy.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\async_memcpy_gdma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\systimer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_etm.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/pau_regdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\pau_regdma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/regdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\regdma_link.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/modem_clock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\modem_clock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\rtc_clk_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\rtc_clk.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_param.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\pmu_param.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\pmu_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\pmu_sleep.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\rtc_time.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\chip_info.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/ocode_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\ocode_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\sar_periph_ctrl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6\sleep_cpu.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj: ASM_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_cpu_asm.S || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6\sleep_cpu_asm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_clock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6\sleep_clock.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_modem_state.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6\sleep_modem_state.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/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_modem.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_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/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/esp32c6/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/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/dma/gdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.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/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/esp32c6/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/edit_cache: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/port/esp32c6/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/install: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/install/local: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c6/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\port\esp32c6 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32c6/install/strip: phony esp-idf/esp_hw_support/port/esp32c6/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/lowpower/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/local: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hw_support\lowpower && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/strip: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Order-only phony target for __idf_freertos + +build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_newlib + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\riscv\port.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\riscv + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\riscv\portasm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\riscv + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions_event_groups.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Link the static library esp-idf\freertos\libfreertos.a + +build esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj || esp-idf/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_FILE = esp-idf\freertos\libfreertos.a + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/freertos/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\freertos && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Order-only phony target for __idf_newlib + +build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_pthread + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/abort.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-builtin + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/flockfile.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\flockfile.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/getentropy.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/scandir.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\scandir.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Link the static library esp-idf\newlib\libnewlib.a + +build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/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/flockfile.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/scandir.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_FILE = esp-idf\newlib\libnewlib.a + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/components/newlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/newlib/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\newlib\port && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/port/install/strip: phony esp-idf/newlib/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Order-only phony target for __idf_pthread + +build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_cxx + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Link the static library esp-idf\pthread\libpthread.a + +build esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj || esp-idf/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_FILE = esp-idf\pthread\libpthread.a + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\pthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\pthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/pthread/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\pthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\pthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\pthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_timer + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_init.cpp.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Link the static library esp-idf\cxx\libcxx.a + +build esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj || esp-idf/esp_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_FILE = esp-idf\cxx\libcxx.a + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cxx && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cxx && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/cxx/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cxx && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cxx && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cxx && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_driver_gptimer + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_systimer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_etm.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Link the static library esp-idf\esp_timer\libesp_timer.a + +build esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer_ esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj || esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_FILE = esp-idf\esp_timer\libesp_timer.a + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_timer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_timer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_timer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_timer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_timer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_timer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Order-only phony target for __idf_esp_driver_gptimer + +build cmake_object_order_depends_target___idf_esp_driver_gptimer: phony || cmake_object_order_depends_target___idf_esp_ringbuf + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer_etm.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Link the static library esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + +build esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_FILE = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gptimer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/edit_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gptimer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/rebuild_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gptimer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gptimer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gptimer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install: phony esp-idf/esp_driver_gptimer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gptimer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/local: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_gptimer && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/strip: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_esp_driver_uart + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Link the static library esp-idf\esp_ringbuf\libesp_ringbuf.a + +build esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/esp_driver_uart/libesp_driver_uart.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_ringbuf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_ringbuf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_ringbuf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_ringbuf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_ringbuf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_ringbuf && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Order-only phony target for __idf_esp_driver_uart + +build cmake_object_order_depends_target___idf_esp_driver_uart: phony || cmake_object_order_depends_target___idf_esp_event + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/src/uart_vfs.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_vfs.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Link the static library esp-idf\esp_driver_uart\libesp_driver_uart.a + +build esp-idf/esp_driver_uart/libesp_driver_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj || esp-idf/esp_event/libesp_event.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_FILE = esp-idf\esp_driver_uart\libesp_driver_uart.a + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_uart && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/edit_cache: phony esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_uart && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/rebuild_cache: phony esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_uart/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_uart && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install: phony esp-idf/esp_driver_uart/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_uart && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/local: phony esp-idf/esp_driver_uart/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_uart && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/strip: phony esp-idf/esp_driver_uart/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/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 + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_FILE = esp-idf\app_trace\libapp_trace.a + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_trace && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_trace && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_trace && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_trace && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/app_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\app_trace && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_FILE = esp-idf\esp_event\libesp_event.a + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_event && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_event && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_event && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_event && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_event && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_driver_pcnt + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_bootloader.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_bootloader.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + + +# ============================================================================= +# 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_bootloader.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj || esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_FILE = esp-idf\nvs_flash\libnvs_flash.a + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_flash && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Order-only phony target for __idf_esp_driver_pcnt + +build cmake_object_order_depends_target___idf_esp_driver_pcnt: phony || cmake_object_order_depends_target___idf_esp_driver_spi + +build esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj: C_COMPILER____idf_esp_driver_pcnt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c || cmake_object_order_depends_target___idf_esp_driver_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src\pulse_cnt.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Link the static library esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + +build esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_FILE = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_pcnt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/edit_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_pcnt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/rebuild_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_pcnt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_pcnt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install: phony esp-idf/esp_driver_pcnt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_pcnt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/local: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_pcnt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/strip: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Order-only phony target for __idf_esp_driver_spi + +build cmake_object_order_depends_target___idf_esp_driver_spi: phony || cmake_object_order_depends_target___idf_esp_driver_mcpwm + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_master.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_dma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave_hd.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Link the static library esp-idf\esp_driver_spi\libesp_driver_spi.a + +build esp-idf/esp_driver_spi/libesp_driver_spi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj || esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_FILE = esp-idf\esp_driver_spi\libesp_driver_spi.a + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_spi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/edit_cache: phony esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_spi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/rebuild_cache: phony esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_spi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_spi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_spi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install: phony esp-idf/esp_driver_spi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_spi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_spi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/local: phony esp-idf/esp_driver_spi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_spi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_spi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/strip: phony esp-idf/esp_driver_spi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Order-only phony target for __idf_esp_driver_mcpwm + +build cmake_object_order_depends_target___idf_esp_driver_mcpwm: phony || cmake_object_order_depends_target___idf_esp_driver_i2s + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cap.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cmpr.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_com.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_fault.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_gen.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_oper.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_sync.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_timer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_etm.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Link the static library esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + +build esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj || esp-idf/esp_driver_i2s/libesp_driver_i2s.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_FILE = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_mcpwm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/edit_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_mcpwm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/rebuild_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_mcpwm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_mcpwm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_mcpwm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/local: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_mcpwm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/strip: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ana_cmpr && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/edit_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ana_cmpr && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/rebuild_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ana_cmpr/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ana_cmpr && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ana_cmpr && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/local: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ana_cmpr && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/strip: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Order-only phony target for __idf_esp_driver_i2s + +build cmake_object_order_depends_target___idf_esp_driver_i2s: phony || cmake_object_order_depends_target___idf_sdmmc + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_std.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_pdm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_tdm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_etm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_platform.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Link the static library esp-idf\esp_driver_i2s\libesp_driver_i2s.a + +build esp-idf/esp_driver_i2s/libesp_driver_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/sdmmc/libsdmmc.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_FILE = esp-idf\esp_driver_i2s\libesp_driver_i2s.a + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2s && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/edit_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2s && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/rebuild_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2s/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2s && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install: phony esp-idf/esp_driver_i2s/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2s && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/local: phony esp-idf/esp_driver_i2s/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2s && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/strip: phony esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_esp_driver_sdspi + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl\sd_pwr_ctrl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Link the static library esp-idf\sdmmc\libsdmmc.a + +build esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj || esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_FILE = esp-idf\sdmmc\libsdmmc.a + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/edit_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/rebuild_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/local: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdmmc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/strip: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Order-only phony target for __idf_esp_driver_sdspi + +build cmake_object_order_depends_target___idf_esp_driver_sdspi: phony || cmake_object_order_depends_target___idf_esp_driver_sdio + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_crc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_host.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_transaction.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Link the static library esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + +build esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj || esp-idf/esp_driver_sdio/libesp_driver_sdio.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_FILE = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdspi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/edit_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdspi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/rebuild_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdspi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdspi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install: phony esp-idf/esp_driver_sdspi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdspi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/local: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdspi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/strip: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdio + + +############################################# +# Order-only phony target for __idf_esp_driver_sdio + +build cmake_object_order_depends_target___idf_esp_driver_sdio: phony || cmake_object_order_depends_target___idf_esp_driver_rmt + +build esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj: C_COMPILER____idf_esp_driver_sdio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/src/sdio_slave.c || cmake_object_order_depends_target___idf_esp_driver_sdio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\src\sdio_slave.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\__idf_esp_driver_sdio.pdb + TARGET_PDB = esp-idf\esp_driver_sdio\libesp_driver_sdio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdio + + +############################################# +# Link the static library esp-idf\esp_driver_sdio\libesp_driver_sdio.a + +build esp-idf/esp_driver_sdio/libesp_driver_sdio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdio_ esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj || esp-idf/esp_driver_rmt/libesp_driver_rmt.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\__idf_esp_driver_sdio.pdb + TARGET_FILE = esp-idf\esp_driver_sdio\libesp_driver_sdio.a + TARGET_PDB = esp-idf\esp_driver_sdio\libesp_driver_sdio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/edit_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/rebuild_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install: phony esp-idf/esp_driver_sdio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/local: phony esp-idf/esp_driver_sdio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/strip: phony esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_dac && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/edit_cache: phony esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_dac && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/rebuild_cache: phony esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_dac/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_dac/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_dac && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install: phony esp-idf/esp_driver_dac/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_dac/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_dac && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/local: phony esp-idf/esp_driver_dac/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_dac/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_dac && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/strip: phony esp-idf/esp_driver_dac/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Order-only phony target for __idf_esp_driver_rmt + +build cmake_object_order_depends_target___idf_esp_driver_rmt: phony || cmake_object_order_depends_target___idf_esp_driver_tsens + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_rx.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_tx.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Link the static library esp-idf\esp_driver_rmt\libesp_driver_rmt.a + +build esp-idf/esp_driver_rmt/libesp_driver_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj || esp-idf/esp_driver_tsens/libesp_driver_tsens.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_FILE = esp-idf\esp_driver_rmt\libesp_driver_rmt.a + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_rmt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/edit_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_rmt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/rebuild_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_rmt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_rmt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install: phony esp-idf/esp_driver_rmt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_rmt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/local: phony esp-idf/esp_driver_rmt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_rmt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/strip: phony esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Order-only phony target for __idf_esp_driver_tsens + +build cmake_object_order_depends_target___idf_esp_driver_tsens: phony || cmake_object_order_depends_target___idf_esp_driver_sdm + +build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c || cmake_object_order_depends_target___idf_esp_driver_tsens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + +build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/src/temperature_sensor_etm.c || cmake_object_order_depends_target___idf_esp_driver_tsens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor_etm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Link the static library esp-idf\esp_driver_tsens\libesp_driver_tsens.a + +build esp-idf/esp_driver_tsens/libesp_driver_tsens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj || esp-idf/esp_driver_sdm/libesp_driver_sdm.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_FILE = esp-idf\esp_driver_tsens\libesp_driver_tsens.a + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_tsens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/edit_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_tsens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/rebuild_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_tsens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_tsens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_tsens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install: phony esp-idf/esp_driver_tsens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_tsens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_tsens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/local: phony esp-idf/esp_driver_tsens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_tsens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/strip: phony esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Order-only phony target for __idf_esp_driver_sdm + +build cmake_object_order_depends_target___idf_esp_driver_sdm: phony || cmake_object_order_depends_target___idf_esp_driver_i2c + +build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src\sdm.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Link the static library esp-idf\esp_driver_sdm\libesp_driver_sdm.a + +build esp-idf/esp_driver_sdm/libesp_driver_sdm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj || esp-idf/esp_driver_i2c/libesp_driver_i2c.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_FILE = esp-idf\esp_driver_sdm\libesp_driver_sdm.a + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/edit_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/rebuild_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install: phony esp-idf/esp_driver_sdm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/local: phony esp-idf/esp_driver_sdm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_sdm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/strip: phony esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Order-only phony target for __idf_esp_driver_i2c + +build cmake_object_order_depends_target___idf_esp_driver_i2c: phony || cmake_object_order_depends_target___idf_esp_driver_ledc + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_master.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_slave.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Link the static library esp-idf\esp_driver_i2c\libesp_driver_i2c.a + +build esp-idf/esp_driver_i2c/libesp_driver_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj || esp-idf/esp_driver_ledc/libesp_driver_ledc.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_FILE = esp-idf\esp_driver_i2c\libesp_driver_i2c.a + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/edit_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/rebuild_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install: phony esp-idf/esp_driver_i2c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/local: phony esp-idf/esp_driver_i2c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_i2c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/strip: phony esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Order-only phony target for __idf_esp_driver_ledc + +build cmake_object_order_depends_target___idf_esp_driver_ledc: phony || cmake_object_order_depends_target___idf_esp_driver_parlio + +build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src\ledc.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Link the static library esp-idf\esp_driver_ledc\libesp_driver_ledc.a + +build esp-idf/esp_driver_ledc/libesp_driver_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj || esp-idf/esp_driver_parlio/libesp_driver_parlio.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_FILE = esp-idf\esp_driver_ledc\libesp_driver_ledc.a + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ledc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/edit_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ledc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/rebuild_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ledc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ledc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install: phony esp-idf/esp_driver_ledc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ledc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/local: phony esp-idf/esp_driver_ledc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ledc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/strip: phony esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_parlio + + +############################################# +# Order-only phony target for __idf_esp_driver_parlio + +build cmake_object_order_depends_target___idf_esp_driver_parlio: phony || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + +build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_common.c || cmake_object_order_depends_target___idf_esp_driver_parlio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb + TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb + +build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_tx.c || cmake_object_order_depends_target___idf_esp_driver_parlio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_tx.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb + TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb + +build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_rx.c || cmake_object_order_depends_target___idf_esp_driver_parlio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_rx.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb + TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_parlio + + +############################################# +# Link the static library esp-idf\esp_driver_parlio\libesp_driver_parlio.a + +build esp-idf/esp_driver_parlio/libesp_driver_parlio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_parlio_ esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj || esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb + TARGET_FILE = esp-idf\esp_driver_parlio\libesp_driver_parlio.a + TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_parlio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/edit_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_parlio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/rebuild_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_parlio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_parlio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install: phony esp-idf/esp_driver_parlio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_parlio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/local: phony esp-idf/esp_driver_parlio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_parlio && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/strip: phony esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Order-only phony target for __idf_esp_driver_usb_serial_jtag + +build cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag: phony || cmake_object_order_depends_target___idf_driver + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_connection_monitor.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_vfs.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Link the static library esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + +build esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj || esp-idf/driver/libdriver.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_FILE = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/edit_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/rebuild_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_usb_serial_jtag/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/local: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/strip: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_phy + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rtc_temperature_legacy.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Link the static library esp-idf\driver\libdriver.a + +build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/esp_phy/libesp_phy.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_FILE = esp-idf\driver\libdriver.a + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\driver && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\driver && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/driver/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\driver && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\driver && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\driver && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_esp_vfs_console + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c6/phy_init_data.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/phy_init_data.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\phy_init_data.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + + +# ============================================================================= +# 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/esp32c6/phy_init_data.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/esp_vfs_console/libesp_vfs_console.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_FILE = esp-idf\esp_phy\libesp_phy.a + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_phy && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_phy && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_phy && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_phy && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_phy && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_vfs_console + + +############################################# +# Order-only phony target for __idf_esp_vfs_console + +build cmake_object_order_depends_target___idf_esp_vfs_console: phony || cmake_object_order_depends_target___idf_vfs + +build esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj: C_COMPILER____idf_esp_vfs_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/vfs_console.c || cmake_object_order_depends_target___idf_esp_vfs_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\vfs_console.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + OBJECT_FILE_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb + TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_vfs_console + + +############################################# +# Link the static library esp-idf\esp_vfs_console\libesp_vfs_console.a + +build esp-idf/esp_vfs_console/libesp_vfs_console.a: C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_ esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb + TARGET_FILE = esp-idf\esp_vfs_console\libesp_vfs_console.a + TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_vfs_console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/edit_cache: phony esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_vfs_console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/rebuild_cache: phony esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_vfs_console/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_vfs_console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_vfs_console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/install: phony esp-idf/esp_vfs_console/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_vfs_console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_vfs_console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/install/local: phony esp-idf/esp_vfs_console/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_vfs_console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_vfs_console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/install/strip: phony esp-idf/esp_vfs_console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/nullfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\nullfs.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + + +# ============================================================================= +# 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_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj || esp-idf/lwip/liblwip.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_FILE = esp-idf\vfs\libvfs.a + TARGET_PDB = esp-idf\vfs\libvfs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\vfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\vfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\vfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\vfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\vfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/acd_dhcp_check.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\acd_dhcp_check.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\polarssl\arc4.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\polarssl\des.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\polarssl\md4.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\polarssl\md5.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\polarssl\sha1.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + + +# ============================================================================= +# 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/acd_dhcp_check.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/lwip/src/netif/ppp/polarssl/arc4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_FILE = esp-idf\lwip\liblwip.a + TARGET_PDB = esp-idf\lwip\liblwip.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\lwip && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\lwip && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\lwip && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\lwip && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\lwip && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif_stack && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif_stack && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif_stack && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif_stack && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif_stack && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_FILE = esp-idf\esp_netif\libesp_netif.a + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_netif && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/famil/esp/v5.4/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_GMAC -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.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_FILE = esp-idf\wpa_supplicant\libwpa_supplicant.a + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + RSP_FILE = CMakeFiles\__idf_wpa_supplicant.rsp + + +############################################# +# Utility command for edit_cache + +build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wpa_supplicant && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wpa_supplicant && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wpa_supplicant && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wpa_supplicant && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wpa_supplicant && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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/src/coexist.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\src\coexist.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\src\lib_printf.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/esp32c6/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\esp_coex_adapter.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist_debug_diagram.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\src\coexist_debug_diagram.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist_debug.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\src\coexist_debug.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/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\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + + +# ============================================================================= +# 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/src/coexist.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj || esp-idf/esp_wifi/libesp_wifi.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_FILE = esp-idf\esp_coex\libesp_coex.a + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_coex && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_coex && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_coex && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_coex && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_coex && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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/lib_printf.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\lib_printf.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c6/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/esp32c6/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\esp_adapter.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + + +# ============================================================================= +# 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/lib_printf.c.obj 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/esp32c6/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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_FILE = esp-idf\esp_wifi\libesp_wifi.a + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_wifi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_wifi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_wifi && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_wifi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_wifi && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bt && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\bt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_compat.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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_compat.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + + +# ============================================================================= +# 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_compat.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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_FILE = esp-idf\unity\libunity.a + TARGET_PDB = esp-idf\unity\libunity.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\unity && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\unity && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\unity && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\unity && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\unity && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv cmake_object_order_depends_target___idf_unity + +build esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER____idf_cmock_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\__idf_cmock.pdb + TARGET_PDB = esp-idf\cmock\libcmock.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a esp-idf/unity/libunity.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\__idf_cmock.pdb + TARGET_FILE = esp-idf\cmock\libcmock.a + TARGET_PDB = esp-idf\cmock\libcmock.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cmock && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cmock && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cmock && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cmock && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\cmock && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cmock/install/strip: phony esp-idf/cmock/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/esp_console_common.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_common.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/esp_console_repl_chip.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_chip.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + + +# ============================================================================= +# 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_common.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/esp_console_repl_chip.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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_FILE = esp-idf\console\libconsole.a + TARGET_PDB = esp-idf\console\libconsole.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\console && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\console && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\__idf_http_parser.pdb + TARGET_PDB = esp-idf\http_parser\libhttp_parser.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\__idf_http_parser.pdb + TARGET_FILE = esp-idf\http_parser\libhttp_parser.a + TARGET_PDB = esp-idf\http_parser\libhttp_parser.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\http_parser && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\http_parser && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\http_parser && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\http_parser && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\http_parser && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/http_parser/install/strip: phony esp-idf/http_parser/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_platform_port.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_FILE = esp-idf\esp-tls\libesp-tls.a + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp-tls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp-tls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp-tls && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp-tls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp-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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp-tls && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_gdbstub + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_monitor.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_monitor.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/gdma/adc_dma.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma\adc_dma.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_filter.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_filter.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\esp32c6\curve_fitting_coefficients.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32c6 + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_adc + + +############################################# +# Link the static library esp-idf\esp_adc\libesp_adc.a + +build esp-idf/esp_adc/libesp_adc.a: C_STATIC_LIBRARY_LINKER____idf_esp_adc_ esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_FILE = esp-idf\esp_adc\libesp_adc.a + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_adc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_adc/edit_cache: phony esp-idf/esp_adc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_adc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_adc/rebuild_cache: phony esp-idf/esp_adc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_adc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_adc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_adc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_adc/install: phony esp-idf/esp_adc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_adc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_adc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/local: phony esp-idf/esp_adc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_adc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_adc && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/strip: phony esp-idf/esp_adc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_isp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/edit_cache: phony esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_isp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/rebuild_cache: phony esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_isp/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_isp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_isp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install: phony esp-idf/esp_driver_isp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_isp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_isp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install/local: phony esp-idf/esp_driver_isp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_isp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_isp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install/strip: phony esp-idf/esp_driver_isp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_cam + + +############################################# +# Order-only phony target for __idf_esp_driver_cam + +build cmake_object_order_depends_target___idf_esp_driver_cam: phony || cmake_object_order_depends_target___idf_riscv + +build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\esp_cam_ctlr.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + +build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\dvp_share_ctrl.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_cam + + +############################################# +# Link the static library esp-idf\esp_driver_cam\libesp_driver_cam.a + +build esp-idf/esp_driver_cam/libesp_driver_cam.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_FILE = esp-idf\esp_driver_cam\libesp_driver_cam.a + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_cam && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/edit_cache: phony esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_cam && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/rebuild_cache: phony esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_cam/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_cam/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_cam && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install: phony esp-idf/esp_driver_cam/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_cam/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_cam && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install/local: phony esp-idf/esp_driver_cam/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_cam/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_cam && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install/strip: phony esp-idf/esp_driver_cam/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_jpeg && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/edit_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_jpeg && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/rebuild_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_jpeg/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_jpeg/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_jpeg && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install: phony esp-idf/esp_driver_jpeg/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_jpeg && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install/local: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_jpeg && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install/strip: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ppa && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/edit_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ppa && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/rebuild_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ppa/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ppa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ppa && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install: phony esp-idf/esp_driver_ppa/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ppa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ppa && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install/local: phony esp-idf/esp_driver_ppa/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_ppa && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install/strip: phony esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_touch_sens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/edit_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_touch_sens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/rebuild_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_touch_sens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_touch_sens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_touch_sens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install/local: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_driver_touch_sens && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install/strip: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/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 + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\phy\esp_eth_phy_802_3.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/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\phy + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/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 + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + + +# ============================================================================= +# 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/phy/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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_FILE = esp-idf\esp_eth\libesp_eth.a + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_eth && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_eth && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_eth && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_eth && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_eth && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\gdbstub_riscv.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\riscv\rv_decode.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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\riscv + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + + +# ============================================================================= +# 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/riscv/gdbstub_riscv.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_FILE = esp-idf\esp_gdbstub\libesp_gdbstub.a + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_gdbstub && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_gdbstub && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_gdbstub && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_gdbstub && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_gdbstub && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_FILE = esp-idf\esp_hid\libesp_hid.a + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hid && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hid && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hid && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hid && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_hid && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hid/install/strip: phony esp-idf/esp_hid/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_FILE = esp-idf\tcp_transport\libtcp_transport.a + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\tcp_transport && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\tcp_transport && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\tcp_transport && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\tcp_transport && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\tcp_transport && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_FILE = esp-idf\esp_http_client\libesp_http_client.a + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_client && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_client && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_client && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_client && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_client && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include + 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 + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_FILE = esp-idf\esp_http_server\libesp_http_server.a + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_http_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\__idf_esp_https_ota.pdb + TARGET_PDB = esp-idf\esp_https_ota\libesp_https_ota.pdb + + +# ============================================================================= +# 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 = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\__idf_esp_https_ota.pdb + TARGET_FILE = esp-idf\esp_https_ota\libesp_https_ota.a + TARGET_PDB = esp-idf\esp_https_ota\libesp_https_ota.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_ota && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_ota && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_ota && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_ota && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_ota && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Order-only phony target for __idf_esp_https_server + +build cmake_object_order_depends_target___idf_esp_https_server: phony || cmake_object_order_depends_target___idf_riscv + +build esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj: C_COMPILER____idf_esp_https_server_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/src/https_server.c || cmake_object_order_depends_target___idf_esp_https_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_server\CMakeFiles\__idf_esp_https_server.dir\src\https_server.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir + OBJECT_FILE_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\__idf_esp_https_server.pdb + TARGET_PDB = esp-idf\esp_https_server\libesp_https_server.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Link the static library esp-idf\esp_https_server\libesp_https_server.a + +build esp-idf/esp_https_server/libesp_https_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_server_ esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\__idf_esp_https_server.pdb + TARGET_FILE = esp-idf\esp_https_server\libesp_https_server.a + TARGET_PDB = esp-idf\esp_https_server\libesp_https_server.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_https_server && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_psram && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_psram && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_psram && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_psram && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_psram && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_psram/install/strip: phony esp-idf/esp_psram/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\i2c\esp_lcd_panel_io_i2c_v1.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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\i2c + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\i2c\esp_lcd_panel_io_i2c_v2.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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\i2c + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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\spi\esp_lcd_panel_io_spi.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/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\spi + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + + +# ============================================================================= +# 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_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/i2c/esp_lcd_panel_io_i2c_v1.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_FILE = esp-idf\esp_lcd\libesp_lcd.a + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_lcd && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_lcd && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_lcd && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_lcd && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_lcd && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_lcd/install/strip: phony esp-idf/esp_lcd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\__idf_protobuf-c.pdb + TARGET_PDB = esp-idf\protobuf-c\libprotobuf-c.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\__idf_protobuf-c.pdb + TARGET_FILE = esp-idf\protobuf-c\libprotobuf-c.a + TARGET_PDB = esp-idf\protobuf-c\libprotobuf-c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protobuf-c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protobuf-c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protobuf-c && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protobuf-c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protobuf-c && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_FILE = esp-idf\protocomm\libprotocomm.a + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protocomm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protocomm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protocomm && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protocomm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\protocomm && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_esp_https_server cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +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_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + + +# ============================================================================= +# 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/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_FILE = esp-idf\esp_local_ctrl\libesp_local_ctrl.a + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_local_ctrl && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_local_ctrl && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_local_ctrl && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_local_ctrl && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_local_ctrl && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_init.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_init.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_sha.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_crc.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\riscv\core_dump_port.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\riscv + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + + +# ============================================================================= +# 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_init.c.obj 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/riscv/core_dump_port.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_FILE = esp-idf\espcoredump\libespcoredump.a + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\espcoredump && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\espcoredump && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\espcoredump && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\espcoredump && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\espcoredump && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_FILE = esp-idf\wear_levelling\libwear_levelling.a + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wear_levelling && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wear_levelling && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wear_levelling && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wear_levelling && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wear_levelling && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv cmake_object_order_depends_target___idf_wear_levelling + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a esp-idf/wear_levelling/libwear_levelling.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_FILE = esp-idf\fatfs\libfatfs.a + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\fatfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\fatfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\fatfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\fatfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\fatfs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\idf_test && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\idf_test && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\idf_test && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\idf_test && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\idf_test && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_ieee802154 + + +############################################# +# Order-only phony target for __idf_ieee802154 + +build cmake_object_order_depends_target___idf_ieee802154: phony || cmake_object_order_depends_target___idf_riscv + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/esp_ieee802154.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\esp_ieee802154.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_ack.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_ack.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_dev.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_dev.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_frame.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_frame.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_pib.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_pib.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_util.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_util.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_sec.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_sec.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + +build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_timer.c || cmake_object_order_depends_target___idf_ieee802154 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_timer.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_ieee802154 + + +############################################# +# Link the static library esp-idf\ieee802154\libieee802154.a + +build esp-idf/ieee802154/libieee802154.a: C_STATIC_LIBRARY_LINKER____idf_ieee802154_ esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb + TARGET_FILE = esp-idf\ieee802154\libieee802154.a + TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ieee802154 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ieee802154 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ieee802154 && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ieee802154 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ieee802154 && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_PDB = esp-idf\json\libjson.pdb + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_PDB = esp-idf\json\libjson.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_FILE = esp-idf\json\libjson.a + TARGET_PDB = esp-idf\json\libjson.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\json && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\json && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\json && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\json && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\json && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_FILE = esp-idf\mqtt\libmqtt.a + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mqtt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mqtt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mqtt && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mqtt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\mqtt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj: C_COMPILER____idf_nvs_sec_provider_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_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 + TARGET_COMPILE_PDB = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\__idf_nvs_sec_provider.pdb + TARGET_PDB = esp-idf\nvs_sec_provider\libnvs_sec_provider.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\__idf_nvs_sec_provider.pdb + TARGET_FILE = esp-idf\nvs_sec_provider\libnvs_sec_provider.a + TARGET_PDB = esp-idf\nvs_sec_provider\libnvs_sec_provider.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_sec_provider && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_sec_provider && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_sec_provider && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_sec_provider && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\nvs_sec_provider && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install/strip: phony esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\openthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\openthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\openthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\openthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\openthread && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_rt + + +############################################# +# Order-only phony target for __idf_rt + +build cmake_object_order_depends_target___idf_rt: phony || cmake_object_order_depends_target___idf_riscv + +build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj: C_COMPILER____idf_rt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_mqueue.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + OBJECT_FILE_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_PDB = esp-idf\rt\librt.pdb + +build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj: C_COMPILER____idf_rt_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/rt/FreeRTOS_POSIX_utils.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_utils.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + OBJECT_FILE_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_PDB = esp-idf\rt\librt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_rt + + +############################################# +# Link the static library esp-idf\rt\librt.a + +build esp-idf/rt/librt.a: C_STATIC_LIBRARY_LINKER____idf_rt_ esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_FILE = esp-idf\rt\librt.a + TARGET_PDB = esp-idf\rt\librt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/rt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\rt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/rt/edit_cache: phony esp-idf/rt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/rt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\rt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rt/rebuild_cache: phony esp-idf/rt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/rt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/rt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\rt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/rt/install: phony esp-idf/rt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/rt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\rt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/rt/install/local: phony esp-idf/rt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/rt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\rt && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/rt/install/strip: phony esp-idf/rt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_FILE = esp-idf\spiffs\libspiffs.a + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spiffs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spiffs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spiffs && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spiffs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\spiffs && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ulp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ulp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ulp && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ulp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\ulp && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\usb && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\usb && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\usb && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\usb && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\usb && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/usb/install/strip: phony esp-idf/usb/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/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.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/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 + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + + +# ============================================================================= +# 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/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_FILE = esp-idf\wifi_provisioning\libwifi_provisioning.a + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wifi_provisioning && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wifi_provisioning && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wifi_provisioning && C:\Users\famil\.espressif\tools\cmake\3.30.2\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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wifi_provisioning && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/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 = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\wifi_provisioning && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/famil/esp/v5.4/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_riscv + +build esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main/Main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\Main.c.obj.d + FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj || esp-idf/riscv/libriscv.a + LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo -BC:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/main/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\main && C:\Users\famil\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util + +# ============================================================================= +# Target aliases. + +build __idf_app_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_driver_cam: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +build __idf_esp_driver_gpio: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build __idf_esp_driver_gptimer: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build __idf_esp_driver_i2c: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build __idf_esp_driver_i2s: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build __idf_esp_driver_ledc: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build __idf_esp_driver_mcpwm: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build __idf_esp_driver_parlio: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a + +build __idf_esp_driver_pcnt: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build __idf_esp_driver_rmt: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build __idf_esp_driver_sdio: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +build __idf_esp_driver_sdm: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build __idf_esp_driver_sdspi: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build __idf_esp_driver_spi: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build __idf_esp_driver_tsens: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +build __idf_esp_driver_uart: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build __idf_esp_driver_usb_serial_jtag: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +build __idf_esp_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_https_server: phony esp-idf/esp_https_server/libesp_https_server.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_security: phony esp-idf/esp_security/libesp_security.a + +build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_esp_vfs_console: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a + +build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.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_ieee802154: phony esp-idf/ieee802154/libieee802154.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_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_riscv: phony esp-idf/riscv/libriscv.a + +build __idf_rt: phony esp-idf/rt/librt.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 __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_driver_cam.a: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +build libesp_driver_gpio.a: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build libesp_driver_gptimer.a: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build libesp_driver_i2c.a: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build libesp_driver_i2s.a: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build libesp_driver_ledc.a: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build libesp_driver_mcpwm.a: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build libesp_driver_parlio.a: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a + +build libesp_driver_pcnt.a: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build libesp_driver_rmt.a: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build libesp_driver_sdio.a: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +build libesp_driver_sdm.a: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build libesp_driver_sdspi.a: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build libesp_driver_spi.a: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build libesp_driver_tsens.a: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +build libesp_driver_uart.a: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build libesp_driver_usb_serial_jtag.a: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +build libesp_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_https_server.a: phony esp-idf/esp_https_server/libesp_https_server.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_security.a: phony esp-idf/esp_security/libesp_security.a + +build libesp_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libesp_vfs_console.a: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a + +build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.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 libieee802154.a: phony esp-idf/ieee802154/libieee802154.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 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 libriscv.a: phony esp-idf/riscv/libriscv.a + +build librt.a: phony esp-idf/rt/librt.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 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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build + +build all: phony bootloader app JoystickControlServo.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf + +build esp-idf/all: phony esp-idf/riscv/all esp-idf/esp_driver_gpio/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_app_format/all esp-idf/esp_bootloader_format/all esp-idf/app_update/all esp-idf/esp_partition/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/esp_mm/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_security/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_timer/all esp-idf/esp_driver_gptimer/all esp-idf/esp_ringbuf/all esp-idf/esp_driver_uart/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_driver_pcnt/all esp-idf/esp_driver_spi/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_i2s/all esp-idf/sdmmc/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_usb_serial_jtag/all esp-idf/driver/all esp-idf/esp_phy/all esp-idf/esp_vfs_console/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_driver_isp/all esp-idf/esp_driver_cam/all esp-idf/esp_driver_jpeg/all esp-idf/esp_driver_ppa/all esp-idf/esp_driver_touch_sens/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/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/rt/all esp-idf/spiffs/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt + +build esp-idf/bt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock + +build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console + +build esp-idf/console/all: phony esp-idf/console/libconsole.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex + +build esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr + +build esp-idf/esp_driver_ana_cmpr/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam + +build esp-idf/esp_driver_cam/all: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac + +build esp-idf/esp_driver_dac/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio + +build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer + +build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c + +build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s + +build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp + +build esp-idf/esp_driver_isp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg + +build esp-idf/esp_driver_jpeg/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc + +build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm + +build esp-idf/esp_driver_mcpwm/all: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio + +build esp-idf/esp_driver_parlio/all: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt + +build esp-idf/esp_driver_pcnt/all: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa + +build esp-idf/esp_driver_ppa/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt + +build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio + +build esp-idf/esp_driver_sdio/all: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm + +build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc + +build esp-idf/esp_driver_sdmmc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi + +build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi + +build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens + +build esp-idf/esp_driver_touch_sens/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens + +build esp-idf/esp_driver_tsens/all: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart + +build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag + +build esp-idf/esp_driver_usb_serial_jtag/all: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid + +build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony esp-idf/esp_https_server/libesp_https_server.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/esp32c6/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6 + +build esp-idf/esp_hw_support/port/esp32c6/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd + +build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm + +build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif_stack + +build esp-idf/esp_netif_stack/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy + +build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_psram + +build esp-idf/esp_psram/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security + +build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32c6/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6 + +build esp-idf/esp_system/port/soc/esp32c6/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console + +build esp-idf/esp_vfs_console/all: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser + +build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154 + +build esp-idf/ieee802154/all: phony esp-idf/ieee802154/libieee802154.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json + +build esp-idf/json/all: phony esp-idf/json/libjson.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip + +build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig + +build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt + +build esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib + +build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/port/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port + +build esp-idf/newlib/port/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread + +build esp-idf/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv + +build esp-idf/riscv/all: phony esp-idf/riscv/libriscv.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt + +build esp-idf/rt/all: phony esp-idf/rt/librt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp + +build esp-idf/ulp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity + +build esp-idf/unity/all: phony esp-idf/unity/libunity.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb + +build esp-idf/usb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs + +build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning + +build esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/.git/HEAD C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/.git/refs/heads/Servo C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/CMakeLists.txt C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main/CMakeLists.txt C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig C$:/Users/famil/esp/v5.4/esp-idf/.git/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/app_update/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/.git C$:/Users/famil/esp/v5.4/esp-idf/components/console/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/cxx/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/driver/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/sources.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/hal/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/.git C$:/Users/famil/esp/v5.4/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/json/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/.git C$:/Users/famil/esp/v5.4/esp-idf/components/log/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/port/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/openthread/.git C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/rt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/soc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/.git C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ulp/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ulp/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/unity/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/.git C$:/Users/famil/esp/v5.4/esp-idf/components/usb/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/build.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/component.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/depgraph.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/dfu.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/idf.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/kconfig.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/ldgen.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project_description.json.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/targets.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/utilities.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/version.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/confgen.py C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/famil/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/.git/HEAD C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/.git/refs/heads/Servo C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/CMakeLists.txt C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main/CMakeLists.txt C$:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig C$:/Users/famil/esp/v5.4/esp-idf/.git/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/famil/esp/v5.4/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/famil/esp/v5.4/esp-idf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/app_trace/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/app_update/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/.git C$:/Users/famil/esp/v5.4/esp-idf/components/console/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/cxx/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/driver/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/sources.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_common/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/fatfs/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/freertos/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/hal/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/.git C$:/Users/famil/esp/v5.4/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/json/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/.git C$:/Users/famil/esp/v5.4/esp-idf/components/log/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/port/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/newlib/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/lib/.git C$:/Users/famil/esp/v5.4/esp-idf/components/openthread/openthread/.git C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/famil/esp/v5.4/esp-idf/components/partition_table/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/famil/esp/v5.4/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/pthread/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/riscv/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/rt/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/soc/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/.git C$:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ulp/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/ulp/project_include.cmake C$:/Users/famil/esp/v5.4/esp-idf/components/unity/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/.git C$:/Users/famil/esp/v5.4/esp-idf/components/usb/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/vfs/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/build.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/component.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/depgraph.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/dfu.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/idf.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/kconfig.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/ldgen.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/project_description.json.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/targets.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/toolchain-esp32c6.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/utilities.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/cmake/version.cmake C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/confgen.py C$:/Users/famil/esp/v5.4/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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/JoystickControlServo/build/cmake_install.cmake b/JoystickControlServo/build/cmake_install.cmake new file mode 100644 index 0000000..0d4f35b --- /dev/null +++ b/JoystickControlServo/build/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/JoystickControlServo/build/compile_commands.json b/JoystickControlServo/build/compile_commands.json new file mode 100644 index 0000000..45864fe --- /dev/null +++ b/JoystickControlServo/build/compile_commands.json @@ -0,0 +1,5528 @@ +[ +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-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/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/idf_test/include -IC:/Users/famil/esp/v5.4/esp-idf/components/idf_test/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles\\JoystickControlServo.elf.dir\\project_elf_src_esp32c6.c.obj -c C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\project_elf_src_esp32c6.c", + "file": "C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\project_elf_src_esp32c6.c", + "output": "CMakeFiles\\JoystickControlServo.elf.dir\\project_elf_src_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\instruction_decode.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\instruction_decode.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\instruction_decode.c", + "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\instruction_decode.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\interrupt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\interrupt.c", + "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors.S.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\vectors.S", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\vectors.S", + "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors.S.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt_plic.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\interrupt_plic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\interrupt_plic.c", + "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt_plic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors_intc.S.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\vectors_intc.S", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\riscv\\vectors_intc.S", + "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors_intc.S.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_flex_glitch_filter.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_flex_glitch_filter.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_flex_glitch_filter.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_flex_glitch_filter.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_etm.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_locks.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_locks.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_trace.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_trace.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_impl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_pm\\pm_impl.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\x509_crt_bundle.S", + "file": "C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\build\\x509_crt_bundle.S", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\sha.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\sha.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\sha.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\\\"JoystickControlServo\\\" -DPROJECT_VER=\\\"268dbb0\\\" -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "output": "esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_partition\\partition.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_partition\\partition.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_partition\\partition_target.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_partition\\partition_target.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_table.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_table.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_table.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_fields.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_fields.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_rtc_calib.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_efuse_utility.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\esp32c6\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32c6\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32c6.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\idf\\bootloader_sha.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\idf\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\idf\\bootloader_sha.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\secure_boot_secure_features.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\secure_boot_secure_features.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\bootloader_support\\src\\esp32c6\\secure_boot_secure_features.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32c6\\secure_boot_secure_features.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ext_mem_layout.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\port\\esp32c6\\ext_mem_layout.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\port\\esp32c6\\ext_mem_layout.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32c6\\ext_mem_layout.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\esp_cache.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\esp_cache.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\cache_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\cache_utils.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_ops.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\flash_ops.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\crosscore_int.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\crosscore_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_ipc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_ipc.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\int_wdt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\int_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\panic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\panic.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_system.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\esp_system.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\startup.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\startup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\startup_funcs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\startup_funcs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\system_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\system_time.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\stack_check.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\stack_check.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\ubsan.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\ubsan.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\xt_wdt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\xt_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\systick_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\systick_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\systick_etm.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\systick_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\hw_stack_guard.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\hw_stack_guard.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\hw_stack_guard.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\hw_stack_guard.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\image_process.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\image_process.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\brownout.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\brownout.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\brownout.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\expression_with_stack.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\expression_with_stack.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\expression_with_stack.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\expression_with_stack.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\panic_arch.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\panic_arch.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\panic_arch.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\panic_arch.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\debug_helpers.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_helpers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_helpers.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_helpers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\debug_stubs.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_stubs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_stubs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_stubs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\clk.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\clk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\clk.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32c6\\clk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\reset_reason.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\reset_reason.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\reset_reason.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32c6\\reset_reason.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\system_internal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\system_internal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\system_internal.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32c6\\system_internal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\cache_err_int.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\cache_err_int.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_system\\port\\soc\\esp32c6\\cache_err_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32c6\\cache_err_int.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_hp_regi2c_esp32c6.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_hp_regi2c_esp32c6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_hp_regi2c_esp32c6.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_hp_regi2c_esp32c6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_tlsf.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_tlsf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_tlsf.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_tlsf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_multi_heap.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_multi_heap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_multi_heap.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_multi_heap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\efuse_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\efuse_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\lp_timer_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\lp_timer_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\lp_timer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\cache_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\color_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\color_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\clk_tree_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\clk_tree_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\clk_tree_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\clk_tree_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\uart_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\uart_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\uart_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\uart_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gpio_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gpio_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\rtc_io_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\rtc_io_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\timer_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\timer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ledc_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ledc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2c_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2c_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\rmt_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\rmt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\pcnt_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\pcnt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mcpwm_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mcpwm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\twai_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\twai_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\twai_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\twai_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gdma_hal_top.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gdma_hal_top.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2s_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\i2s_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sdm_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sdm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\etm_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\etm_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\etm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\etm_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\parlio_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\parlio_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\parlio_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\parlio_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_hal_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_hal_common.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\adc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\ecc_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ecc_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ecc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ecc_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mpi_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\mpi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sha_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sha_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\aes_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\aes_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\modem_clock_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\modem_clock_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\modem_clock_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\modem_clock_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pau_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\pau_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\pau_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\pau_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\brownout_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\brownout_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sdio_slave_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\sdio_slave_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdio_slave_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\pmu_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\esp32c6\\pmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32c6\\pmu_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\apm_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\apm_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\apm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\apm_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hmac_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\hmac_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ds_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\ds_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_write.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\os\\log_write.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\util.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps_base.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps_base.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\heap_caps_init.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\multi_heap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\multi_heap.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\memory_layout.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\port\\esp32c6\\memory_layout.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\heap\\port\\esp32c6\\memory_layout.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32c6\\memory_layout.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\interrupts.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\interrupts.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\interrupts.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\gpio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gpio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\uart_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\uart_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\uart_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\adc_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\adc_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\adc_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\dedic_gpio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\dedic_gpio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\etm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\etm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\etm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\etm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\gdma_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gdma_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\gdma_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\spi_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\spi_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\spi_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ledc_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ledc_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\ledc_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pcnt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\pcnt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\pcnt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rmt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rmt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\rmt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\sdm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\sdm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\i2s_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2s_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\i2s_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\i2c_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2c_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\i2c_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\temperature_sensor_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\temperature_sensor_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\timer_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\timer_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\timer_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\parlio_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\parlio_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\parlio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\parlio_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\mcpwm_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mcpwm_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\mcpwm_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\mpi_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mpi_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\mpi_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\twai_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\twai_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\twai_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\wdt_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\wdt_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\wdt_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ieee802154_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ieee802154_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\ieee802154_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\ieee802154_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_io_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rtc_io_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\rtc_io_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\sdio_slave_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdio_slave_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\sdio_slave_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\sdio_slave_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\system_retention_periph.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\system_retention_periph.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\soc\\esp32c6\\system_retention_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32c6\\system_retention_periph.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\init.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_dpa_protection.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_dpa_protection.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_dpa_protection.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_dpa_protection.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_cpu_intr.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_cpu_intr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\esp_cpu_intr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\cpu_region_protect.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\cpu_region_protect.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\cpu_region_protect.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\revision.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\revision.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\io_mux.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\io_mux.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\io_mux.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\io_mux.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_clk_tree.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_clk_tree.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\esp_clk_tree.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\esp_clk_tree.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_retention.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_retention.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_retention.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_retention.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_system_peripheral.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_system_peripheral.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_system_peripheral.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_system_peripheral.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_sleep_retention.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_sleep_retention.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_sleep_retention.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_sleep_retention.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\gdma_etm.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\systimer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\systimer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\systimer.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\systimer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_etm.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\pau_regdma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\pau_regdma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\pau_regdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\pau_regdma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\regdma_link.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\regdma_link.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\regdma_link.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\regdma_link.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\modem_clock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\modem_clock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\modem_clock.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\modem_clock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_clk_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_clk_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_clk.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_clk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_param.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_param.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_param.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_param.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\pmu_sleep.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_sleep.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\pmu_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\pmu_sleep.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\rtc_time.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\rtc_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\chip_info.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\chip_info.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\chip_info.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\ocode_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\ocode_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\ocode_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\ocode_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\sar_periph_ctrl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\sar_periph_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\port\\esp32c6\\sar_periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32c6\\sar_periph_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_cpu.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_cpu.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_cpu.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_cpu_asm.S.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_cpu_asm.S", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_cpu_asm.S", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_cpu_asm.S.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_clock.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_clock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_clock.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_clock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_security/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_modem_state.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_modem_state.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32c6\\sleep_modem_state.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32c6\\sleep_modem_state.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\heap_idf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\heap_idf.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\app_startup.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\app_startup.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\port_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\port_common.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\port_systick.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\port_systick.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\port.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\port.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\port.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\port.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\abort.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\abort.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\abort.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\assert.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\assert.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\assert.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\heap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\heap.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\heap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\flockfile.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\flockfile.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\flockfile.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\flockfile.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\locks.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\locks.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\locks.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\poll.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\poll.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\poll.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\pthread.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\pthread.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\pthread.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\random.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\random.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\random.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\getentropy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\getentropy.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\getentropy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\reent_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\reent_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\reent_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\newlib_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\newlib_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\newlib_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\syscalls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\syscalls.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\syscalls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\termios.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\termios.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\termios.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\stdatomic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\stdatomic.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\stdatomic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\time.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\sysconf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\sysconf.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\sysconf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\realpath.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\realpath.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\realpath.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\scandir.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\scandir.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\scandir.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\scandir.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\port\\esp_time_impl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\newlib\\port\\esp_time_impl.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\port\\esp_time_impl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_init.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cxx\\cxx_init.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_timer\\src\\esp_timer_etm.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_etm.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "output": "esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\app_trace.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\app_trace.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\app_trace_util.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\app_trace_util.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\host_file_io.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\host_file_io.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_trace/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\port\\port_uart.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\app_trace\\port\\port_uart.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\default_event_loop.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\default_event_loop.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\esp_event.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\esp_event.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\esp_event_private.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_event\\esp_event_private.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "output": "esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_dma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_dma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_dma.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_dma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_etm.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_etm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdio\\CMakeFiles\\__idf_esp_driver_sdio.dir\\src\\sdio_slave.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdio\\src\\sdio_slave.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdio\\src\\sdio_slave.c", + "output": "esp-idf\\esp_driver_sdio\\CMakeFiles\\__idf_esp_driver_sdio.dir\\src\\sdio_slave.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor_etm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor_etm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor_etm.c", + "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor_etm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "output": "esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "output": "esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_common.c", + "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_tx.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_tx.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_tx.c", + "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_tx.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_rx.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_rx.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_rx.c", + "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_rx.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\i2c\\i2c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\i2c\\i2c.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\twai\\twai.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\driver\\twai\\twai.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\phy_init_data.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\esp32c6\\phy_init_data.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\esp32c6\\phy_init_data.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\esp32c6\\phy_init_data.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", + "output": "esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs_semihost.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\vfs_semihost.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\nullfs.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\nullfs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\vfs\\nullfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\acd_dhcp_check.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\polarssl\\arc4.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\polarssl\\des.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\polarssl\\md4.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\polarssl\\md5.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\polarssl\\sha1.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -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.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\lib_printf.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\lib_printf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\lib_printf.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\lib_printf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32c6\\esp_coex_adapter.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\esp32c6\\esp_coex_adapter.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\esp32c6\\esp_coex_adapter.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32c6\\esp_coex_adapter.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug_diagram.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist_debug_diagram.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist_debug_diagram.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug_diagram.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist_debug.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_coex\\src\\coexist_debug.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\lib_printf.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\lib_printf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\lib_printf.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\lib_printf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\esp_adapter.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\esp32c6\\esp_adapter.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\esp32c6\\esp_adapter.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32c6\\esp_adapter.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_compat.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_compat.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_compat.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_compat.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_runner.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_runner.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_cache.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_cache.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_memory.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_utils_memory.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_port_esp32.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\unity_port_esp32.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/include -IC:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "output": "esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\commands.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\commands.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_common.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\esp_console_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\esp_console_common.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\split_argv.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\split_argv.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_chip.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/console/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\http_parser\\http_parser.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\http_parser\\http_parser.c", + "output": "esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_platform_port.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_common.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_cali.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_cali.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_filter.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\adc_filter.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\esp32c6\\curve_fitting_coefficients.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\esp32c6\\curve_fitting_coefficients.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_adc\\esp32c6\\curve_fitting_coefficients.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32c6\\curve_fitting_coefficients.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\esp_cam_ctlr.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_cam\\esp_cam_ctlr.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_cam\\esp_cam_ctlr.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\esp_cam_ctlr.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp_share_ctrl.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_cam\\dvp_share_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_driver_cam\\dvp_share_ctrl.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp_share_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_802_3.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_802_3.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_802_3.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_802_3.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\gdbstub_riscv.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\port\\riscv\\gdbstub_riscv.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\port\\riscv\\gdbstub_riscv.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\riscv\\gdbstub_riscv.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\rv_decode.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\port\\riscv\\rv_decode.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_gdbstub\\src\\port\\riscv\\rv_decode.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\riscv\\rv_decode.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/private -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/util -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/app_update/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "output": "esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_https_server\\CMakeFiles\\__idf_esp_https_server.dir\\src\\https_server.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_https_server\\src\\https_server.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_https_server\\src\\https_server.c", + "output": "esp-idf\\esp_https_server\\CMakeFiles\\__idf_esp_https_server.dir\\src\\https_server.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\i2c\\esp_lcd_panel_io_i2c_v1.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v1.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\i2c\\esp_lcd_panel_io_i2c_v2.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v2.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v2.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v2.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/priv_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\spi\\esp_lcd_panel_io_spi.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\spi\\esp_lcd_panel_io_spi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_lcd\\spi\\esp_lcd_panel_io_spi.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\spi\\esp_lcd_panel_io_spi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "output": "esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security0.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security0.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security1.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security1.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/console -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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_init.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_init.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_init.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_init.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_sha.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_crc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump -IC:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/include_core_dump/port/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\riscv\\core_dump_port.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\port\\riscv\\core_dump_port.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\espcoredump\\src\\port\\riscv\\core_dump_port.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\riscv\\core_dump_port.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\src\\ff.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\src\\ff.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\esp_ieee802154.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\esp_ieee802154.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\esp_ieee802154.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\esp_ieee802154.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_ack.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_ack.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_ack.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_ack.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_dev.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_dev.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_dev.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_dev.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_frame.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_frame.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_frame.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_frame.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_pib.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_pib.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_pib.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_pib.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_util.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_util.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_util.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_util.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_sec.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_sec.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_sec.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_sec.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/include -IC:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_timer.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_timer.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_timer.c", + "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_timer.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\json\\cJSON\\cJSON.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\json\\cJSON\\cJSON.c", + "output": "esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c", + "output": "esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls -IC:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/http_parser -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/include -IC:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "output": "esp-idf\\nvs_sec_provider\\CMakeFiles\\__idf_nvs_sec_provider.dir\\nvs_sec_provider.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/rt/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj -c C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs_api.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs_api.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs -IC:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_ctrl.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\manager.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\manager.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_ctrl.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/include -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src -IC:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/common -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/security -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/transports -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/include/local -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_event/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/include -IC:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c", + "file": "C:\\Users\\famil\\esp\\v5.4\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj" +}, +{ + "directory": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "command": "C:\\Users\\famil\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.4\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config -IC:/Users/famil/esp/v5.4/esp-idf/components/newlib/platform_include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/config/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/include/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/. -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/private_include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/include -IC:/Users/famil/esp/v5.4/esp-idf/components/heap/tlsf -IC:/Users/famil/esp/v5.4/esp-idf/components/log/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/register -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/platform_port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/hal/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/include/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6 -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_common/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/riscv -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/include/private -IC:/Users/famil/esp/v5.4/esp-idf/components/riscv/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/include/apps/sntp -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/touch_sensor/include -IC:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/include -IC:/Users/famil/esp/v5.4/esp-idf/components/vfs/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/interface -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/include -IC:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/include -IC:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo=. -fmacro-prefix-map=C:/Users/famil/esp/v5.4/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\\Main.c.obj -c C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\main\\Main.c", + "file": "C:\\Users\\famil\\COMPUTER\\Owen\\ESPmicrocontroller\\JoystickControlServo\\main\\Main.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\Main.c.obj" +} +] \ No newline at end of file diff --git a/JoystickControlServo/build/config.env b/JoystickControlServo/build/config.env new file mode 100644 index 0000000..f260564 --- /dev/null +++ b/JoystickControlServo/build/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/bt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/console/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/driver/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/heap/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/lwip/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/openthread/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/pthread/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/ulp/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/unity/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/usb/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/vfs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/bt/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/driver/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/hal/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/lwip/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/pthread/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/sdkconfig.rename;C:/Users/famil/esp/v5.4/esp-idf/components/vfs/sdkconfig.rename", + "IDF_TARGET": "esp32c6", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.4.0", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/famil/esp/v5.4/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/kconfigs_projbuild.in" +} diff --git a/JoystickControlServo/build/config/kconfig_menus.json b/JoystickControlServo/build/config/kconfig_menus.json new file mode 100644 index 0000000..2b8d481 --- /dev/null +++ b/JoystickControlServo/build/config/kconfig_menus.json @@ -0,0 +1,30499 @@ +[ + { + "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_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_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_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_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_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_SUPPORTED", + "name": "SOC_ETM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_SUPPORTED", + "name": "SOC_PARLIO_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_IEEE802154_SUPPORTED", + "name": "SOC_IEEE802154_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "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_LP_CORE_SUPPORTED", + "name": "SOC_LP_CORE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_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_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ECC_SUPPORTED", + "name": "SOC_ECC_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_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_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_APM_SUPPORTED", + "name": "SOC_APM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PMU_SUPPORTED", + "name": "SOC_PMU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PAU_SUPPORTED", + "name": "SOC_PAU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_SUPPORTED", + "name": "SOC_LP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_AON_SUPPORTED", + "name": "SOC_LP_AON_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPHERALS_SUPPORTED", + "name": "SOC_LP_PERIPHERALS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_SUPPORTED", + "name": "SOC_LP_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_LP_UART_SUPPORTED", + "name": "SOC_ULP_LP_UART_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_ASSIST_DEBUG_SUPPORTED", + "name": "SOC_ASSIST_DEBUG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MODEM_CLOCK_SUPPORTED", + "name": "SOC_MODEM_CLOCK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "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_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_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_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", + "name": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_TEMPERATURE_SHARE_INTR", + "name": "SOC_ADC_TEMPERATURE_SHARE_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_FLEXIBLE_INTC", + "name": "SOC_CPU_HAS_FLEXIBLE_INTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_INT_PLIC_SUPPORTED", + "name": "SOC_INT_PLIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_CSR_PC", + "name": "SOC_CPU_HAS_CSR_PC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_PMA", + "name": "SOC_CPU_HAS_PMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "name": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_PMP_REGION_GRANULARITY", + "name": "SOC_CPU_PMP_REGION_GRANULARITY", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORT_ETM", + "name": "SOC_GDMA_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", + "name": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_GROUPS", + "name": "SOC_ETM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_CHANNELS_PER_GROUP", + "name": "SOC_ETM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ETM_SUPPORT_SLEEP_RETENTION", + "name": "SOC_ETM_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", + "name": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_ETM", + "name": "SOC_GPIO_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", + "name": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", + "name": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", + "name": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", + "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_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", + "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLOCKOUT_HAS_SOURCE_GATE", + "name": "SOC_CLOCKOUT_HAS_SOURCE_GATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", + "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_FSM_RST", + "name": "SOC_I2C_SUPPORT_HW_FSM_RST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", + "name": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLEEP_RETENTION", + "name": "SOC_I2C_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_NUM", + "name": "SOC_LP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_I2C_FIFO_LEN", + "name": "SOC_LP_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_ETM", + "name": "SOC_I2S_SUPPORTS_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_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_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORT_SLEEP_RETENTION", + "name": "SOC_I2S_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", + "name": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", + "name": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", + "name": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", + "name": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", + "name": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", + "name": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "name": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MMU_DI_VADDR_SHARED", + "name": "SOC_MMU_DI_VADDR_SHARED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", + "name": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_RMT_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORT_ETM", + "name": "SOC_MCPWM_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", + "name": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", + "name": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_GROUPS", + "name": "SOC_PARLIO_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_UNITS_PER_GROUP", + "name": "SOC_PARLIO_TX_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_RX_UNITS_PER_GROUP", + "name": "SOC_PARLIO_RX_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", + "name": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", + "name": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_TX_RX_SHARE_INTERRUPT", + "name": "SOC_PARLIO_TX_RX_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", + "name": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_PLL_F80M", + "name": "SOC_SDM_CLK_SUPPORT_PLL_F80M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_XTAL", + "name": "SOC_SDM_CLK_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLEEP_RETENTION", + "name": "SOC_SPI_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_PLL_F80M", + "name": "SOC_SPI_SUPPORT_CLK_PLL_F80M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_RC_FAST", + "name": "SOC_SPI_SUPPORT_CLK_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", + "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", + "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORT_RC_FAST", + "name": "SOC_SYSTIMER_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORT_ETM", + "name": "SOC_SYSTIMER_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", + "name": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_SUPPORT_ETM", + "name": "SOC_TIMER_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MWDT_SUPPORT_XTAL", + "name": "SOC_MWDT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", + "name": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", + "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_CLK_SUPPORT_XTAL", + "name": "SOC_TWAI_CLK_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_PAD_JTAG", + "name": "SOC_EFUSE_DIS_PAD_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_ECC", + "name": "SOC_SECURE_BOOT_V2_ECC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APM_CTRL_FILTER_SUPPORTED", + "name": "SOC_APM_CTRL_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APM_LP_APM0_SUPPORTED", + "name": "SOC_APM_LP_APM0_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "name": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "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_LP_NUM", + "name": "SOC_UART_LP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_UART_FIFO_LEN", + "name": "SOC_LP_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_PLL_F80M_CLK", + "name": "SOC_UART_SUPPORT_PLL_F80M_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HAS_LP_UART", + "name": "SOC_UART_HAS_LP_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_SLEEP_RETENTION", + "name": "SOC_UART_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_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_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BEACON_WAKEUP", + "name": "SOC_PM_SUPPORT_BEACON_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_XTAL32K_PD", + "name": "SOC_PM_SUPPORT_XTAL32K_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC32K_PD", + "name": "SOC_PM_SUPPORT_RC32K_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_TOP_PD", + "name": "SOC_PM_SUPPORT_TOP_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_HP_AON_PD", + "name": "SOC_PM_SUPPORT_HP_AON_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_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_PMU_MODEM_STATE", + "name": "SOC_PM_SUPPORT_PMU_MODEM_STATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_SW", + "name": "SOC_PM_CPU_RETENTION_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_REGDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_REGDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_RETENTION_HAS_CLOCK_BUG", + "name": "SOC_PM_RETENTION_HAS_CLOCK_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", + "name": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_LINK_NUM", + "name": "SOC_PM_PAU_LINK_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", + "name": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", + "name": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", + "name": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_RETENTION_MODULE_NUM", + "name": "SOC_PM_RETENTION_MODULE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_MODEM_CLOCK_IS_INDEPENDENT", + "name": "SOC_MODEM_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_OSC_SLOW_SUPPORTED", + "name": "SOC_CLK_OSC_SLOW_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC32K_SUPPORTED", + "name": "SOC_CLK_RC32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RCC_IS_INDEPENDENT", + "name": "SOC_RCC_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", + "name": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", + "name": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_CLOCK_IS_INDEPENDENT", + "name": "SOC_RNG_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HE_SUPPORT", + "name": "SOC_WIFI_HE_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MAC_VERSION_NUM", + "name": "SOC_WIFI_MAC_VERSION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_ESP_NIMBLE_CONTROLLER", + "name": "SOC_ESP_NIMBLE_CONTROLLER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_POWER_CONTROL_SUPPORTED", + "name": "SOC_BLE_POWER_CONTROL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", + "name": "SOC_BLE_PERIODIC_ADV_ENH_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_BLE_MULTI_CONN_OPTIMIZATION", + "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND", + "name": "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_NO_RESET_BY_ANA_BOD", + "name": "SOC_CAPS_NO_RESET_BY_ANA_BOD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR", + "name": "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_CORE_SUPPORT_ETM", + "name": "SOC_LP_CORE_SUPPORT_ETM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "name": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "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_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_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 with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Use ANSI terminal colors in log output\nEnable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format", + "title": "Format", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "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", + "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED && 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 separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2: 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 (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt only the app image that is present in the partition of type app", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [], + "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_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RVFPLIB", + "name": "ESP_ROM_HAS_RVFPLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_SYSTIMER", + "name": "ESP_ROM_HAS_HAL_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HEAP_TLSF", + "name": "ESP_ROM_HAS_HEAP_TLSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_TLSF_CHECK_PATCH", + "name": "ESP_ROM_TLSF_CHECK_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_MULTI_HEAP_WALK_PATCH", + "name": "ESP_ROM_MULTI_HEAP_WALK_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_REGI2C_BUG", + "name": "ESP_ROM_HAS_REGI2C_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE", + "name": "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_WDT_INIT_PATCH", + "name": "ESP_ROM_WDT_INIT_PATCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "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": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", + "id": "compiler-options-compiler-float-lib-source", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "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 will transfer data through the 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 && !ESP_SYSTEM_SINGLE_CORE_MODE && 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": "ESP_SYSTEM_SINGLE_CORE_MODE && !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": [ + { + "children": [], + "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_STD_SUPPORTED)) && ", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_STD", + "name": "BT_ENC_KEY_SIZE_CTRL_STD", + "range": null, + "title": "Supported by standard HCI command", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED)) && ", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_VSC", + "name": "BT_ENC_KEY_SIZE_CTRL_VSC", + "range": null, + "title": "Supported by Vendor-specific HCI command", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_NONE", + "name": "BT_ENC_KEY_SIZE_CTRL_NONE", + "range": null, + "title": "Not supported", + "type": "bool" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This chooses the support status of configuring encryption key size", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-configure-encryption-key-size", + "name": "BT_ENC_KEY_SIZE_CTRL_ENABLED", + "title": "configure encryption key size", + "type": "choice" + }, + { + "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": [ + { + "children": [], + "depends_on": "BT_A2DP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Audio/Video Remote Control Profile, AVRCP and A2DP are coupled in Bluedroid,\nAVRCP still controlled by A2DP option, this is a dummy option currently", + "id": "BT_AVRCP_ENABLED", + "name": "BT_AVRCP_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enable Cover Art feature of AVRCP CT role", + "id": "BT_AVRCP_CT_COVER_ART_ENABLED", + "name": "BT_AVRCP_CT_COVER_ART_ENABLED", + "range": null, + "title": "AVRCP CT Cover Art", + "type": "bool" + } + ], + "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-a2dp-avrcp-features", + "title": "AVRCP Features", + "type": "menu" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Advanced Audio Distribution 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": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables common SDP operation, such as SDP record creation and deletion.", + "id": "BT_SDP_COMMON_ENABLED", + "name": "BT_SDP_COMMON_ENABLED", + "range": null, + "title": "BT SDP COMMON", + "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" + }, + { + "children": [], + "depends_on": "BT_HFP_ENABLE && 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 transmitted via GPIOs.", + "id": "BT_HFP_WBS_ENABLE", + "name": "BT_HFP_WBS_ENABLE", + "range": null, + "title": "Wide Band Speech", + "type": "bool" + } + ], + "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" + }, + { + "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 functionalities", + "id": "BT_HID_ENABLED", + "is_menuconfig": true, + "name": "BT_HID_ENABLED", + "range": null, + "title": "Classic BT HID", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT GOEP Profile Client role", + "id": "BT_GOEPC_ENABLED", + "name": "BT_GOEPC_ENABLED", + "range": null, + "title": null, + "type": "bool" + } + ], + "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": [ + { + "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" + }, + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, Bluedroid will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", + "id": "BT_BLE_SMP_ID_RESET_ENABLE", + "name": "BT_BLE_SMP_ID_RESET_ENABLE", + "range": null, + "title": "Reset device identity when all bonding records are deleted", + "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-connections", + "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.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", + "id": "BT_BLE_50_FEATURES_SUPPORTED", + "name": "BT_BLE_50_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 5.0 features(please disable BLE 4.2 if enable BLE 5.0)", + "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.\nThis option is universally supported by all ESP chips with BLE capabilities.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", + "id": "BT_BLE_42_FEATURES_SUPPORTED", + "name": "BT_BLE_42_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 4.2 features(please disable BLE 5.0 if enable BLE 4.2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && 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_BLUEDROID_ENABLED && 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_BLUEDROID_ENABLED && 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" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables abort when memory allocation fails", + "id": "BT_ABORT_WHEN_ALLOCATION_FAILS", + "name": "BT_ABORT_WHEN_ALLOCATION_FAILS", + "range": null, + "title": "Abort when memory allocation fails in BT/BLE stack", + "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": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, Bluedroid will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", + "id": "BT_NIMBLE_SMP_ID_RESET", + "name": "BT_NIMBLE_SMP_ID_RESET", + "range": null, + "title": "Reset device identity when all bonding records are deleted", + "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_LVL", + "name": "BT_NIMBLE_SM_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" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the service data unit buffer count for l2cap coc.", + "id": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", + "name": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", + "range": null, + "title": "L2cap coc Service Data Unit 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_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_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_50_FEATURE_SUPPORT && 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_50_FEATURE_SUPPORT && 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 && SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && 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": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && 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 Transfer Sync Events", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && 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_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": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_SYNC && 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": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLE_PERIODIC_SYNC && BT_NIMBLE_50_FEATURE_SUPPORT && 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" + } + ], + "depends_on": "BT_NIMBLE_EXT_SCAN && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to receive periodic advertisement.", + "id": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", + "name": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", + "range": null, + "title": "Enable periodic sync", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ROLE_OBSERVER && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to do extended scanning.", + "id": "BT_NIMBLE_EXT_SCAN", + "name": "BT_NIMBLE_EXT_SCAN", + "range": null, + "title": "Enable extended scanning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_POWER_CONTROL_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT && 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_50_FEATURE_SUPPORT && (BT_CONTROLLER_DISABLED || SOC_BLE_CTE_SUPPORTED) && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable support for Connectionless and Connection Oriented Direction Finding", + "id": "BT_NIMBLE_AOA_AOD", + "name": "BT_NIMBLE_AOA_AOD", + "range": null, + "title": "Direction Finding", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_50_FEATURE_SUPPORT && 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_50_FEATURE_SUPPORT && 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_50_FEATURE_SUPPORT && 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_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of descriptors 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_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": "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 && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && BT_NIMBLE_ENABLED", + "help": "This enables support for user to initiate a new connection with scan in progress", + "id": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", + "name": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", + "range": null, + "title": "Allow Connections with scanning in progress", + "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": [ + { + "children": [], + "depends_on": "", + "help": "Use RAM as HCI interface", + "id": "BT_LE_HCI_INTERFACE_USE_RAM", + "name": "BT_LE_HCI_INTERFACE_USE_RAM", + "range": null, + "title": "VHCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use UART as HCI interface", + "id": "BT_LE_HCI_INTERFACE_USE_UART", + "name": "BT_LE_HCI_INTERFACE_USE_UART", + "range": null, + "title": "UART(H4)", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "component-config-bluetooth-controller-options-hci-config-hci-mode", + "name": "BT_LE_HCI_INTERFACE", + "title": "HCI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "UART HCI Mode with DMA functionality.", + "id": "BT_LE_UART_HCI_DMA_MODE", + "name": "BT_LE_UART_HCI_DMA_MODE", + "range": null, + "title": "UHCI(UART with DMA)(EXPERIMENTAL)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "UART HCI Mode without DMA functionality.", + "id": "BT_LE_UART_HCI_NO_DMA_MODE", + "name": "BT_LE_UART_HCI_NO_DMA_MODE", + "range": null, + "title": "UART(NO DMA)", + "type": "bool" + } + ], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": "Specify UART HCI mode: DMA or No DMA", + "id": "component-config-bluetooth-controller-options-hci-config-uart-hci-mode", + "name": "BT_LE_UART_HCI_MODE_CHOICE", + "title": "UART HCI mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": "Set the port number of HCI UART", + "id": "BT_LE_HCI_UART_PORT", + "name": "BT_LE_HCI_UART_PORT", + "range": null, + "title": "HCI UART port", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_HCI_UART_FLOWCTRL", + "name": "BT_LE_HCI_UART_FLOWCTRL", + "range": null, + "title": "HCI uart Hardware Flow ctrl", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_HCI_UART_TX_PIN", + "name": "BT_LE_HCI_UART_TX_PIN", + "range": null, + "title": "HCI uart Tx gpio", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_HCI_UART_RX_PIN", + "name": "BT_LE_HCI_UART_RX_PIN", + "range": null, + "title": "HCI uart Rx gpio", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_UART_FLOWCTRL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_HCI_UART_RTS_PIN", + "name": "BT_LE_HCI_UART_RTS_PIN", + "range": null, + "title": "HCI uart RTS gpio", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_UART_FLOWCTRL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_HCI_UART_CTS_PIN", + "name": "BT_LE_HCI_UART_CTS_PIN", + "range": null, + "title": "HCI uart CTS gpio", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": "HCI uart baud rate 115200 ~ 1000000", + "id": "BT_LE_HCI_UART_BAUD", + "name": "BT_LE_HCI_UART_BAUD", + "range": null, + "title": "HCI uart baudrate", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "UART_PARITY_DISABLE", + "id": "BT_LE_HCI_UART_UART_PARITY_DISABLE", + "name": "BT_LE_HCI_UART_UART_PARITY_DISABLE", + "range": null, + "title": "PARITY_DISABLE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "UART_PARITY_EVEN", + "id": "BT_LE_HCI_UART_UART_PARITY_EVEN", + "name": "BT_LE_HCI_UART_UART_PARITY_EVEN", + "range": null, + "title": "PARITY_EVEN", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "UART_PARITY_ODD", + "id": "BT_LE_HCI_UART_UART_PARITY_ODD", + "name": "BT_LE_HCI_UART_UART_PARITY_ODD", + "range": null, + "title": "PARITY_ODD", + "type": "bool" + } + ], + "depends_on": "BT_LE_HCI_INTERFACE_USE_UART && BT_CONTROLLER_ENABLED", + "help": null, + "id": "component-config-bluetooth-controller-options-hci-config-select-uart-parity", + "name": "BT_LE_HCI_UART_PARITY", + "title": "select uart parity", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_LE_UART_HCI_NO_DMA_MODE && BT_CONTROLLER_ENABLED", + "help": "The size of rx ring buffer memory", + "id": "BT_LE_HCI_UART_RX_BUFFER_SIZE", + "name": "BT_LE_HCI_UART_RX_BUFFER_SIZE", + "range": null, + "title": "The size of rx ring buffer memory", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_UART_HCI_NO_DMA_MODE && BT_CONTROLLER_ENABLED", + "help": "The size of tx ring buffer memory", + "id": "BT_LE_HCI_UART_TX_BUFFER_SIZE", + "name": "BT_LE_HCI_UART_TX_BUFFER_SIZE", + "range": null, + "title": "The size of tx ring buffer memory", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_LE_HCI_INTERFACE_USE_RAM && BT_CONTROLLER_ENABLED", + "help": "This configures stack size of hci transport task", + "id": "BT_LE_HCI_TRANS_TASK_STACK_SIZE", + "name": "BT_LE_HCI_TRANS_TASK_STACK_SIZE", + "range": null, + "title": "HCI transport task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_UART_HCI_DMA_MODE && BT_CONTROLLER_ENABLED", + "help": "The amount of rx memory received at the same time", + "id": "BT_LE_HCI_TRANS_RX_MEM_NUM", + "name": "BT_LE_HCI_TRANS_RX_MEM_NUM", + "range": null, + "title": "The amount of rx memory received at the same time", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_UART_HCI_DMA_MODE && BT_CONTROLLER_ENABLED", + "help": "The amount of lldecs memory for driver dma mode", + "id": "BT_LE_HCI_LLDESCS_POOL_NUM", + "name": "BT_LE_HCI_LLDESCS_POOL_NUM", + "range": null, + "title": "The amount of lldecs memory for driver dma mode", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-hci-config", + "title": "HCI Config", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable NPL porting for controller.", + "id": "BT_LE_CONTROLLER_NPL_OS_PORTING_SUPPORT", + "name": "BT_LE_CONTROLLER_NPL_OS_PORTING_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && BT_CONTROLLER_ENABLED", + "help": "Enable 2M-PHY", + "id": "BT_LE_LL_CFG_FEAT_LE_2M_PHY", + "name": "BT_LE_LL_CFG_FEAT_LE_2M_PHY", + "range": null, + "title": "Enable 2M Phy", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && BT_CONTROLLER_ENABLED", + "help": "Enable coded-PHY", + "id": "BT_LE_LL_CFG_FEAT_LE_CODED_PHY", + "name": "BT_LE_LL_CFG_FEAT_LE_CODED_PHY", + "range": null, + "title": "Enable coded Phy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_EXT_ADV && BT_LE_EXT_ADV && BT_CONTROLLER_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.\nEach extended advertising instance will take about 0.5k DRAM.", + "id": "BT_LE_MAX_EXT_ADV_INSTANCES", + "name": "BT_LE_MAX_EXT_ADV_INSTANCES", + "range": null, + "title": "Maximum number of extended advertising instances.", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_EXT_ADV && BT_LE_EXT_ADV && BT_CONTROLLER_ENABLED", + "help": "Defines the length of the extended adv data. The value should not\nexceed 1650.", + "id": "BT_LE_EXT_ADV_MAX_SIZE", + "name": "BT_LE_EXT_ADV_MAX_SIZE", + "range": null, + "title": "Maximum length of the advertising data.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_ENABLE_PERIODIC_ADV && BT_LE_EXT_ADV && BT_CONTROLLER_ENABLED", + "help": "This enables controller transfer periodic sync events to host", + "id": "BT_LE_PERIODIC_ADV_SYNC_TRANSFER", + "name": "BT_LE_PERIODIC_ADV_SYNC_TRANSFER", + "range": null, + "title": "Enable Transfer Sync Events", + "type": "bool" + } + ], + "depends_on": "BT_LE_EXT_ADV && BT_LE_EXT_ADV && BT_CONTROLLER_ENABLED", + "help": "Enable this option to start periodic advertisement.", + "id": "BT_LE_ENABLE_PERIODIC_ADV", + "name": "BT_LE_ENABLE_PERIODIC_ADV", + "range": null, + "title": "Enable periodic advertisement.", + "type": "bool" + } + ], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && BT_CONTROLLER_ENABLED", + "help": "Enable this option to do extended advertising. Extended advertising\nwill be supported from BLE 5.0 onwards.", + "id": "BT_LE_EXT_ADV", + "name": "BT_LE_EXT_ADV", + "range": null, + "title": "Enable extended advertising", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && !BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_MAX_PERIODIC_SYNCS", + "name": "BT_LE_MAX_PERIODIC_SYNCS", + "range": null, + "title": "Maximum number of periodic advertising syncs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && !BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Set this option to set the upper limit for number of periodic advertiser list.", + "id": "BT_LE_MAX_PERIODIC_ADVERTISER_LIST", + "name": "BT_LE_MAX_PERIODIC_ADVERTISER_LIST", + "range": null, + "title": "Maximum number of periodic advertiser list", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_50_FEATURE_SUPPORT && !BT_NIMBLE_ENABLED && IDF_TARGET_ESP32C6 && BT_CONTROLLER_ENABLED", + "help": "Set this option to enable the Power Control feature on controller", + "id": "BT_LE_POWER_CONTROL_ENABLED", + "name": "BT_LE_POWER_CONTROL_ENABLED", + "range": null, + "title": "Enable controller support for BLE Power Control", + "type": "bool" + } + ], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enable BLE 5 feature", + "id": "BT_LE_50_FEATURE_SUPPORT", + "is_menuconfig": true, + "name": "BT_LE_50_FEATURE_SUPPORT", + "range": null, + "title": "Enable BLE 5 feature", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_MSYS_1_BLOCK_COUNT", + "name": "BT_LE_MSYS_1_BLOCK_COUNT", + "range": null, + "title": "MSYS_1 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Dynamic memory size of block 1", + "id": "BT_LE_MSYS_1_BLOCK_SIZE", + "name": "BT_LE_MSYS_1_BLOCK_SIZE", + "range": null, + "title": "MSYS_1 Block Size", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Dynamic memory count", + "id": "BT_LE_MSYS_2_BLOCK_COUNT", + "name": "BT_LE_MSYS_2_BLOCK_COUNT", + "range": null, + "title": "MSYS_2 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Dynamic memory size of block 2", + "id": "BT_LE_MSYS_2_BLOCK_SIZE", + "name": "BT_LE_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 && BT_CONTROLLER_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_LE_MSYS_BUF_FROM_HEAP", + "name": "BT_LE_MSYS_BUF_FROM_HEAP", + "range": null, + "title": "Get Msys Mbuf from heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "The number of ACL data buffers.", + "id": "BT_LE_ACL_BUF_COUNT", + "name": "BT_LE_ACL_BUF_COUNT", + "range": null, + "title": "ACL Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_ACL_BUF_SIZE", + "name": "BT_LE_ACL_BUF_SIZE", + "range": null, + "title": "ACL Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_HCI_EVT_BUF_SIZE", + "name": "BT_LE_HCI_EVT_BUF_SIZE", + "range": null, + "title": "HCI Event Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_HCI_EVT_HI_BUF_COUNT", + "name": "BT_LE_HCI_EVT_HI_BUF_COUNT", + "range": null, + "title": "High Priority HCI Event Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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_LE_HCI_EVT_LO_BUF_COUNT", + "name": "BT_LE_HCI_EVT_LO_BUF_COUNT", + "range": null, + "title": "Low Priority HCI Event Buffer count", + "type": "int" + } + ], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-memory-settings", + "title": "Memory Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "This configures stack size of NimBLE controller task", + "id": "BT_LE_CONTROLLER_TASK_STACK_SIZE", + "name": "BT_LE_CONTROLLER_TASK_STACK_SIZE", + "range": null, + "title": "Controller task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enable controller log module", + "id": "BT_LE_CONTROLLER_LOG_CTRL_ENABLED", + "name": "BT_LE_CONTROLLER_LOG_CTRL_ENABLED", + "range": null, + "title": "enable controller log module", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enable hci log module", + "id": "BT_LE_CONTROLLER_LOG_HCI_ENABLED", + "name": "BT_LE_CONTROLLER_LOG_HCI_ENABLED", + "range": null, + "title": "enable HCI log module", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Only operate in dump mode", + "id": "BT_LE_CONTROLLER_LOG_DUMP_ONLY", + "name": "BT_LE_CONTROLLER_LOG_DUMP_ONLY", + "range": null, + "title": "Controller log dump mode only", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_STORAGE_ENABLE && BT_CONTROLLER_ENABLED", + "help": "The size of ble controller log partition shall be a multiples of 4K.\nThe name of log partition shall be \"bt_ctrl_log\".\nThe partition type shall be ESP_PARTITION_TYPE_DATA.\nThe partition sub_type shall be ESP_PARTITION_SUBTYPE_ANY.", + "id": "BT_LE_CONTROLLER_LOG_PARTITION_SIZE", + "name": "BT_LE_CONTROLLER_LOG_PARTITION_SIZE", + "range": null, + "title": "size of ble controller log partition(Multiples of 4K)", + "type": "int" + } + ], + "depends_on": "!BT_LE_CONTROLLER_LOG_DUMP_ONLY && BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Store ble controller logs to flash memory.", + "id": "BT_LE_CONTROLLER_LOG_STORAGE_ENABLE", + "name": "BT_LE_CONTROLLER_LOG_STORAGE_ENABLE", + "range": null, + "title": "Store ble controller logs to flash(Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Configure the size of the first BLE controller LOG buffer.", + "id": "BT_LE_LOG_CTRL_BUF1_SIZE", + "name": "BT_LE_LOG_CTRL_BUF1_SIZE", + "range": null, + "title": "size of the first BLE controller LOG buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Configure the size of the second BLE controller LOG buffer.", + "id": "BT_LE_LOG_CTRL_BUF2_SIZE", + "name": "BT_LE_LOG_CTRL_BUF2_SIZE", + "range": null, + "title": "size of the second BLE controller LOG buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_CONTROLLER_LOG_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Configure the size of the BLE HCI LOG buffer.", + "id": "BT_LE_LOG_HCI_BUF_SIZE", + "name": "BT_LE_LOG_HCI_BUF_SIZE", + "range": null, + "title": "size of the BLE HCI LOG buffer", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable controller log", + "id": "BT_LE_CONTROLLER_LOG_ENABLED", + "is_menuconfig": true, + "name": "BT_LE_CONTROLLER_LOG_ENABLED", + "range": null, + "title": "Controller log enable", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Configure the size of resolving list used in link layer.", + "id": "BT_LE_LL_RESOLV_LIST_SIZE", + "name": "BT_LE_LL_RESOLV_LIST_SIZE", + "range": null, + "title": "BLE LL Resolving list size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_SECURITY_ENABLE && BT_CONTROLLER_ENABLED", + "help": "Enable security manager legacy pairing", + "id": "BT_LE_SM_LEGACY", + "name": "BT_LE_SM_LEGACY", + "range": null, + "title": "Security manager legacy pairing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_SECURITY_ENABLE && BT_LE_SM_SC && BT_CONTROLLER_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_LE_SM_SC_DEBUG_KEYS", + "name": "BT_LE_SM_SC_DEBUG_KEYS", + "range": null, + "title": "Use predefined public-private key pair", + "type": "bool" + } + ], + "depends_on": "BT_LE_SECURITY_ENABLE && BT_CONTROLLER_ENABLED", + "help": "Enable security manager secure connections", + "id": "BT_LE_SM_SC", + "name": "BT_LE_SM_SC", + "range": null, + "title": "Security manager secure connections (4.2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_LE_SECURITY_ENABLE && BT_CONTROLLER_ENABLED", + "help": "Enable encryption connection", + "id": "BT_LE_LL_CFG_FEAT_LE_ENCRYPTION", + "name": "BT_LE_LL_CFG_FEAT_LE_ENCRYPTION", + "range": null, + "title": "Enable LE encryption", + "type": "bool" + } + ], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enable BLE sm feature", + "id": "BT_LE_SECURITY_ENABLE", + "is_menuconfig": true, + "name": "BT_LE_SECURITY_ENABLE", + "range": null, + "title": "Enable BLE SM feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enable this option to choose mbedTLS instead of TinyCrypt for crypto\ncomputations.", + "id": "BT_LE_CRYPTO_STACK_MBEDTLS", + "name": "BT_LE_CRYPTO_STACK_MBEDTLS", + "range": null, + "title": "Override TinyCrypt with mbedTLS for crypto computations", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "BLE list size", + "id": "BT_LE_WHITELIST_SIZE", + "name": "BT_LE_WHITELIST_SIZE", + "range": null, + "title": "BLE white list size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "config the max count of duplicate scan list", + "id": "BT_LE_LL_DUP_SCAN_LIST_COUNT", + "name": "BT_LE_LL_DUP_SCAN_LIST_COUNT", + "range": null, + "title": "BLE duplicate scan list count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Sleep clock accuracy of our device (in ppm)", + "id": "BT_LE_LL_SCA", + "name": "BT_LE_LL_SCA", + "range": null, + "title": "BLE Sleep clock accuracy", + "type": "int" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_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.\nEach connection will take about 1k DRAM.", + "id": "BT_LE_MAX_CONNECTIONS", + "name": "BT_LE_MAX_CONNECTIONS", + "range": null, + "title": "Maximum number of concurrent connections", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always enable the limitation on max tx/rx time for Coded-PHY connection", + "id": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EN", + "name": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EN", + "range": null, + "title": "Force Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Disable the limitation on max tx/rx time for Coded-PHY connection", + "id": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "name": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "range": null, + "title": "Force Disable", + "type": "bool" + } + ], + "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && BT_CONTROLLER_ENABLED", + "help": "When using PHY-Coded in BLE connection, limitation on max tx/rx time can be applied to\nbetter avoid dramatic performance deterioration of Wi-Fi.", + "id": "component-config-bluetooth-controller-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection", + "name": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM", + "title": "Coexistence: limit on MAX Tx/Rx time for coded-PHY connection", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "name": "BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable BLE sleep", + "id": "BT_LE_SLEEP_ENABLE", + "name": "BT_LE_SLEEP_ENABLE", + "range": null, + "title": "Enable BLE sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "User main XTAL as RTC clock source.\nThis option is recommended if external 32.768k XTAL is not available.\nUsing the external 32.768 kHz XTAL will have lower current consumption\nin light sleep compared to using the main XTAL.", + "id": "BT_LE_LP_CLK_SRC_MAIN_XTAL", + "name": "BT_LE_LP_CLK_SRC_MAIN_XTAL", + "range": null, + "title": "Use main XTAL as RTC clock source", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use the same slow clock source as system RTC\nUsing any clock source other than external 32.768 kHz XTAL supports only\nlegacy ADV and SCAN due to low clock accuracy.", + "id": "BT_LE_LP_CLK_SRC_DEFAULT", + "name": "BT_LE_LP_CLK_SRC_DEFAULT", + "range": null, + "title": "Use system RTC slow clock source", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "component-config-bluetooth-controller-options-ble-low-power-clock-source", + "name": "BT_LE_LP_CLK_SRC", + "title": "BLE low power clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": "!BT_NIMBLE_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Set this option to use Esp Timer which has higher priority timer\ninstead of FreeRTOS timer", + "id": "BT_LE_USE_ESP_TIMER", + "name": "BT_LE_USE_ESP_TIMER", + "range": null, + "title": "Enable Esp Timer for Callout", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "help": "The number of unprocessed advertising report that bluetooth host can save.If you set\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, bluetooth host 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`BT_CTRL_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": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "range": null, + "title": "BLE adv report flow control number", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_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 `BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", + "id": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "name": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "range": null, + "title": "BLE adv lost event threshold value", + "type": "int" + } + ], + "depends_on": "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": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "range": null, + "title": "BLE adv report flow control supported", + "type": "bool" + }, + { + "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": "BT_LE_SCAN_DUPL_TYPE_DEVICE", + "name": "BT_LE_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": "BT_LE_SCAN_DUPL_TYPE_DATA", + "name": "BT_LE_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": "BT_LE_SCAN_DUPL_TYPE_DATA_DEVICE", + "name": "BT_LE_SCAN_DUPL_TYPE_DATA_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address And Advertising Data", + "type": "bool" + } + ], + "depends_on": "BT_LE_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": "BT_LE_SCAN_DUPL_TYPE", + "title": "Scan Duplicate Type", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_LE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_SCAN_DUPL_TYPE", + "name": "BT_LE_SCAN_DUPL_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_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": "BT_LE_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "name": "BT_LE_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "range": null, + "title": "Duplicate scan list refresh period (seconds)", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "This select enables parameters setting of BLE scan duplicate.", + "id": "BT_LE_SCAN_DUPL", + "name": "BT_LE_SCAN_DUPL", + "range": null, + "title": "BLE Scan Duplicate Options", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_MSYS_INIT_IN_CONTROLLER", + "name": "BT_LE_MSYS_INIT_IN_CONTROLLER", + "range": null, + "title": "Msys Mbuf Init in Controller", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_LE_TX_CCA_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Power threshold of CCA in unit of -1 dBm.", + "id": "BT_LE_CCA_RSSI_THRESH", + "name": "BT_LE_CCA_RSSI_THRESH", + "range": null, + "title": "CCA RSSI threshold value", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable CCA feature to cancel sending the packet if the signal power is stronger than CCA threshold.", + "id": "BT_LE_TX_CCA_ENABLED", + "name": "BT_LE_TX_CCA_ENABLED", + "range": null, + "title": "Enable TX CCA feature", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N15", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N15", + "range": null, + "title": "-15dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N12", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N12", + "range": null, + "title": "-12dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N9", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N9", + "range": null, + "title": "-9dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N6", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N6", + "range": null, + "title": "-6dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N3", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N3", + "range": null, + "title": "-3dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_N0", + "name": "BT_LE_DFT_TX_POWER_LEVEL_N0", + "range": null, + "title": "0dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P3", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P3", + "range": null, + "title": "+3dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P6", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P6", + "range": null, + "title": "+6dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P9", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P9", + "range": null, + "title": "+9dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P12", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P12", + "range": null, + "title": "+12dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P15", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P15", + "range": null, + "title": "+15dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P18", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P18", + "range": null, + "title": "+18dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_P20", + "name": "BT_LE_DFT_TX_POWER_LEVEL_P20", + "range": null, + "title": "+20dBm", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify default Tx power level(dBm).", + "id": "component-config-bluetooth-controller-options-ble-default-tx-power-level-dbm-", + "name": "BT_LE_DFT_TX_POWER_LEVEL_DBM", + "title": "BLE default Tx power level(dBm)", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_LE_DFT_TX_POWER_LEVEL_DBM_EFF", + "name": "BT_LE_DFT_TX_POWER_LEVEL_DBM_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enabling this option will add stricter verification of the Access Address in the CONNECT_IND PDU.\nThis improves security by ensuring that only connection requests with valid Access Addresses are accepted.\nIf disabled, only basic checks are applied, improving compatibility.", + "id": "BT_LE_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "name": "BT_LE_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "range": null, + "title": "Enable enhanced Access Address check in CONNECT_IND", + "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": 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" + }, + { + "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" + } + ], + "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": "Support BLE Mesh v1.1 features", + "id": "BLE_MESH_V11_SUPPORT", + "name": "BLE_MESH_V11_SUPPORT", + "range": null, + "title": "Support ESP BLE Mesh v1.1 features (Preview)", + "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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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_V11_SUPPORT && 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": [], + "depends_on": null, + "help": "Instead of listing the commands in the order of registration, the help command lists\nthe available commands in sorted order, if this option is enabled.", + "id": "CONSOLE_SORTED_HELP", + "name": "CONSOLE_SORTED_HELP", + "range": null, + "title": "Enable sorted help", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-console-library", + "title": "Console Library", + "type": "menu" + }, + { + "children": [ + { + "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_DAC_SUPPORTED", + "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", + "id": "ADC_DISABLE_DAC", + "name": "ADC_DISABLE_DAC", + "range": null, + "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "ADC_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", + "id": "ADC_CAL_EFUSE_TP_ENABLE", + "name": "ADC_CAL_EFUSE_TP_ENABLE", + "range": null, + "title": "Use Two Point Values", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", + "id": "ADC_CAL_EFUSE_VREF_ENABLE", + "name": "ADC_CAL_EFUSE_VREF_ENABLE", + "range": null, + "title": "Use eFuse Vref", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", + "id": "ADC_CAL_LUT_ENABLE", + "name": "ADC_CAL_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", + "id": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration", + "title": "Legacy ADC Calibration Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration", + "title": "Legacy ADC Driver Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "DAC_SUPPRESS_DEPRECATE_WARN", + "name": "DAC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-driver-configurations-legacy-dac-driver-configurations", + "title": "Legacy DAC Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-mcpwm-driver-configurations", + "title": "Legacy MCPWM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-driver-configurations-legacy-timer-group-driver-configurations", + "title": "Legacy Timer Group Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "RMT_SUPPRESS_DEPRECATE_WARN", + "name": "RMT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-rmt-driver-configurations", + "title": "Legacy RMT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "I2S_SUPPRESS_DEPRECATE_WARN", + "name": "I2S_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-driver-configurations-legacy-i2s-driver-configurations", + "title": "Legacy I2S Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "PCNT_SUPPRESS_DEPRECATE_WARN", + "name": "PCNT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-pcnt-driver-configurations", + "title": "Legacy PCNT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "SDM_SUPPRESS_DEPRECATE_WARN", + "name": "SDM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-sdm-driver-configurations", + "title": "Legacy SDM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "name": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations", + "title": "Legacy Temperature Sensor Driver Configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations", + "title": "Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "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, 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": [], + "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_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", + "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_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" + }, + { + "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": "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" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enable a fuller set of OCSP checks: checking revocation status of intermediate certificates,\noptional fallbacks to CRLs, etc.", + "id": "ESP_TLS_OCSP_CHECKALL", + "name": "ESP_TLS_OCSP_CHECKALL", + "range": null, + "title": "Enabled full OCSP checks for ESP-TLS", + "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" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for ADC driver.\nNote that this option only controls the ADC driver log, will not affect other drivers.\n\nnote: This cannot be used in the ADC legacy driver.", + "id": "ADC_ENABLE_DEBUG_LOG", + "name": "ADC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable ADC debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-adc-and-adc-calibration", + "title": "ADC and ADC Calibration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_COEX_ENABLED", + "name": "ESP_COEX_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "((ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)) && ESP_COEX_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 && ESP_COEX_ENABLED", + "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" + }, + { + "children": [], + "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && ESP_COEX_ENABLED", + "help": "If enabled, coexist power management will be enabled.", + "id": "ESP_COEX_POWER_MANAGEMENT", + "name": "ESP_COEX_POWER_MANAGEMENT", + "range": null, + "title": "Support power management under coexistence", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", + "name": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", + "range": null, + "title": "General", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", + "name": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", + "range": null, + "title": "Wi-Fi", + "type": "bool" + } + ], + "depends_on": "ESP_COEX_GPIO_DEBUG", + "help": "Select type of debugging diagram", + "id": "component-config-wireless-coexistence-gpio-debugging-for-coexistence-debugging-diagram", + "name": "ESP_COEX_GPIO_DEBUG_DIAG", + "title": "Debugging Diagram", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_COUNT", + "name": "ESP_COEX_GPIO_DEBUG_IO_COUNT", + "range": null, + "title": "Max number of debugging GPIOs", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 0 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX0", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX0", + "range": null, + "title": "Actual IO num for Debug IO ID0", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 1 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX1", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX1", + "range": null, + "title": "Actual IO num for Debug IO ID1", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 2 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX2", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX2", + "range": null, + "title": "Actual IO num for Debug IO ID2", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 3 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX3", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX3", + "range": null, + "title": "Actual IO num for Debug IO ID3", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 4 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX4", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX4", + "range": null, + "title": "Actual IO num for Debug IO ID4", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 5 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX5", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX5", + "range": null, + "title": "Actual IO num for Debug IO ID5", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 6 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX6", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX6", + "range": null, + "title": "Actual IO num for Debug IO ID6", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 7 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX7", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX7", + "range": null, + "title": "Actual IO num for Debug IO ID7", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 8 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX8", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX8", + "range": null, + "title": "Actual IO num for Debug IO ID8", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 9 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX9", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX9", + "range": null, + "title": "Actual IO num for Debug IO ID9", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 10 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX10", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX10", + "range": null, + "title": "Actual IO num for Debug IO ID10", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 11 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX11", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX11", + "range": null, + "title": "Actual IO num for Debug IO ID11", + "type": "int" + } + ], + "depends_on": "!PM_SLP_DISABLE_GPIO && !PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "help": "Support coexistence GPIO debugging", + "id": "ESP_COEX_GPIO_DEBUG", + "name": "ESP_COEX_GPIO_DEBUG", + "range": null, + "title": "GPIO debugging for 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": "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": "whether 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-esp-driver-analog-comparator-configurations", + "title": "ESP-Driver:Analog Comparator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MIPI_CSI_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", + "help": "Ensure the CSI driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_MIPI_CSI_ISR_IRAM_SAFE", + "name": "CAM_CTLR_MIPI_CSI_ISR_IRAM_SAFE", + "range": null, + "title": "CSI ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED", + "help": "Ensure the ISP_DVP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_ISP_DVP_ISR_IRAM_SAFE", + "name": "CAM_CTLR_ISP_DVP_ISR_IRAM_SAFE", + "range": null, + "title": "ISP_DVP ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LCDCAM_CAM_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", + "help": "Ensure the DVP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE", + "name": "CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE", + "range": null, + "title": "DVP ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED", + "id": "component-config-esp-driver-camera-controller-configurations", + "title": "ESP-Driver:Camera Controller Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,\nso that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "DAC_CTRL_FUNC_IN_IRAM", + "name": "DAC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place DAC control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "DAC_ISR_IRAM_SAFE", + "name": "DAC_ISR_IRAM_SAFE", + "range": null, + "title": "DAC ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "whether to enable the debug log message for DAC driver.\nNote that, this option only controls the DAC driver log, won't affect other drivers.", + "id": "DAC_ENABLE_DEBUG_LOG", + "name": "DAC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED", + "help": "Whether to left shift the continuous data to align every bytes to 16 bits in the driver.\nOn ESP32, although the DAC resolution is only 8 bits,\nthe hardware requires 16 bits data in continuous mode.\nBy enabling this option, the driver will left shift 8 bits for the input data automatically.\nOnly disable this option when you decide to do this step by yourself.\nNote that the driver will allocate a new piece of memory to save the converted data.", + "id": "DAC_DMA_AUTO_16BIT_ALIGN", + "name": "DAC_DMA_AUTO_16BIT_ALIGN", + "range": null, + "title": "Align the continuous data to 16 bit automatically", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-esp-driver-dac-configurations", + "title": "ESP-Driver:DAC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option is intended to fix the bug that ESP32 is not able to switch to configured\npullup/pulldown mode in sleep.\nIf this option is selected, chip will automatically emulate the behaviour of switching,\nand about 450B of source codes would be placed into IRAM.", + "id": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "name": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "range": null, + "title": "Support light sleep GPIO pullup/pulldown configuration for ESP32", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place GPIO control functions (like intr_disable/set_level) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GPIO_CTRL_FUNC_IN_IRAM", + "name": "GPIO_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPIO control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-gpio-configurations", + "title": "ESP-Driver:GPIO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer ISR handler 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": "whether 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-esp-driver-gptimer-configurations", + "title": "ESP-Driver:GPTimer Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nnote: This cannot be used in the I2C legacy driver.", + "id": "I2C_ISR_IRAM_SAFE", + "name": "I2C_ISR_IRAM_SAFE", + "range": null, + "title": "I2C ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "whether to enable the debug log message for I2C driver.\nNote that this option only controls the I2C driver log, will not affect other drivers.\n\nnote: This cannot be used in the I2C legacy driver.", + "id": "I2C_ENABLE_DEBUG_LOG", + "name": "I2C_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2C debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "I2C slave version 2 solves some existing known issues. Such as write/read workflow, stretch handling, etc.", + "id": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "name": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "range": null, + "title": "Enable I2C slave driver version 2", + "type": "bool" + } + ], + "depends_on": "SOC_I2C_SUPPORTED", + "id": "component-config-esp-driver-i2c-configurations", + "title": "ESP-Driver:I2C Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "I2S_ISR_IRAM_SAFE", + "name": "I2S_ISR_IRAM_SAFE", + "range": null, + "title": "I2S ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "whether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", + "id": "I2S_ENABLE_DEBUG_LOG", + "name": "I2S_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2S debug log", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-esp-driver-i2s-configurations", + "title": "ESP-Driver:I2S Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ISP_SUPPORTED", + "help": "Ensure the ISP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "ISP_ISR_IRAM_SAFE", + "name": "ISP_ISR_IRAM_SAFE", + "range": null, + "title": "ISP driver ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ISP_SUPPORTED", + "help": "Place ISP control functions 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.\n\nFunction list:\n- `esp_isp_sharpen_configure`", + "id": "ISP_CTRL_FUNC_IN_IRAM", + "name": "ISP_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place ISP control functions into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_ISP_SUPPORTED", + "id": "component-config-esp-driver-isp-configurations", + "title": "ESP-Driver:ISP Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_JPEG_CODEC_SUPPORTED", + "help": "whether to enable the debug log message for JPEG driver.\nNote that, this option only controls the JPEG driver log, won't affect other drivers.\nPlease also note, enable this option will make jpeg codec process speed much slower.", + "id": "JPEG_ENABLE_DEBUG_LOG", + "name": "JPEG_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_JPEG_CODEC_SUPPORTED", + "id": "component-config-esp-driver-jpeg-codec-configurations", + "title": "ESP-Driver:JPEG-Codec Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place LEDC control functions (ledc_update_duty and ledc_stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM context.\nEnabling this option can improve driver performance as well.", + "id": "LEDC_CTRL_FUNC_IN_IRAM", + "name": "LEDC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place LEDC control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-ledc-configurations", + "title": "ESP-Driver:LEDC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "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": "whether 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-esp-driver-mcpwm-configurations", + "title": "ESP-Driver:MCPWM Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "whether 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-esp-driver-parallel-io-configurations", + "title": "ESP-Driver:Parallel IO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "Place PCNT control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "PCNT_CTRL_FUNC_IN_IRAM", + "name": "PCNT_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place PCNT control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "Ensure the PCNT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "PCNT_ISR_IRAM_SAFE", + "name": "PCNT_ISR_IRAM_SAFE", + "range": null, + "title": "PCNT ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", + "id": "PCNT_ENABLE_DEBUG_LOG", + "name": "PCNT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-esp-driver-pcnt-configurations", + "title": "ESP-Driver:PCNT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "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": "whether 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-esp-driver-rmt-configurations", + "title": "ESP-Driver:RMT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "Place SDM control functions (like set_duty) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "SDM_CTRL_FUNC_IN_IRAM", + "name": "SDM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place SDM control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "whether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", + "id": "SDM_ENABLE_DEBUG_LOG", + "name": "SDM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-esp-driver-sigma-delta-modulator-configurations", + "title": "ESP-Driver:Sigma Delta Modulator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH && SOC_GPSPI_SUPPORTED", + "help": "Normally only the ISR of SPI master is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.\n\nThis configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\n\nDuring unit test, this is enabled to measure the ideal case of api.", + "id": "SPI_MASTER_IN_IRAM", + "name": "SPI_MASTER_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI master into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!HEAP_PLACE_FUNCTION_INTO_FLASH && SOC_GPSPI_SUPPORTED", + "help": "Place the SPI master ISR in to IRAM to avoid possible cache miss.\n\nEnabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH\nis disabled since the spi master uses can allocate transactions buffers into DMA\nmemory section using the heap component API that ipso facto has to be placed in IRAM.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_MASTER_ISR_IN_IRAM", + "name": "SPI_MASTER_ISR_IN_IRAM", + "range": null, + "title": "Place SPI master ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "help": "Normally only the ISR of SPI slave is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.", + "id": "SPI_SLAVE_IN_IRAM", + "name": "SPI_SLAVE_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI slave into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "help": "Place the SPI slave ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_SLAVE_ISR_IN_IRAM", + "name": "SPI_SLAVE_ISR_IN_IRAM", + "range": null, + "title": "Place SPI slave ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_GPSPI_SUPPORTED", + "id": "component-config-esp-driver-spi-configurations", + "title": "ESP-Driver:SPI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Place touch sensor oneshot scanning and continuous scanning functions into IRAM,\nso that these 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": "TOUCH_CTRL_FUNC_IN_IRAM", + "name": "TOUCH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place touch sensor control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Ensure the touch sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "TOUCH_ISR_IRAM_SAFE", + "name": "TOUCH_ISR_IRAM_SAFE", + "range": null, + "title": "Touch sensor ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Whether to enable the debug log message for touch driver.\nNote that, this option only controls the touch driver log, won't affect other drivers.", + "id": "TOUCH_ENABLE_DEBUG_LOG", + "name": "TOUCH_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "id": "component-config-esp-driver-touch-sensor-configurations", + "title": "ESP-Driver:Touch Sensor Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether to enable the debug log message for temperature sensor driver.\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.", + "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED", + "help": "Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "TEMP_SENSOR_ISR_IRAM_SAFE", + "name": "TEMP_SENSOR_ISR_IRAM_SAFE", + "range": null, + "title": "Temperature sensor ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-esp-driver-temperature-sensor-configurations", + "title": "ESP-Driver:Temperature Sensor Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "help": "If this option is not selected, UART interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", + "id": "UART_ISR_IN_IRAM", + "name": "UART_ISR_IN_IRAM", + "range": null, + "title": "Place UART ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-uart-configurations", + "title": "ESP-Driver:UART Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && USJ_ENABLE_USB_SERIAL_JTAG && SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long\nas the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to\nprevent the system from entering light sleep.\nThis option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is\nenabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.\nNote. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is\ncalled manually from the program, enabling this option will not prevent light sleep entry even if the\nUSB Serial/JTAG is in use.", + "id": "USJ_NO_AUTO_LS_ON_CONNECTION", + "name": "USJ_NO_AUTO_LS_ON_CONNECTION", + "range": null, + "title": "Don't enter the automatic light sleep when USB Serial/JTAG port is connected", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "The USB-Serial-JTAG module on ESP chips is turned on by default after power-on.\nIf your application does not need it and not rely on it to be used as system\nconsole or use the built-in JTAG for debugging, you can disable this option,\nthen the clock of this module will be disabled at startup, which will save\nsome power consumption.", + "id": "USJ_ENABLE_USB_SERIAL_JTAG", + "name": "USJ_ENABLE_USB_SERIAL_JTAG", + "range": null, + "title": "Enable USB-Serial-JTAG Module", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "id": "component-config-esp-driver-usb-serial-jtag-configuration", + "title": "ESP-Driver:USB Serial/JTAG Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "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": "IDF_TARGET_ESP32 && 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": "IDF_TARGET_ESP32 && 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": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "GPIO0 can be set to output a pre-divided PLL clock. Enabling this option will configure\nGPIO0 to output a 50MHz clock. In fact this clock doesn't have directly relationship with\nEMAC peripheral. Sometimes this clock may not work well with your PHY chip.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", + "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": "IDF_TARGET_ESP32 && !ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "Set the GPIO number to output RMII Clock.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", + "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.\n!! Important !! Make sure it is 64B aligned for ESP32P4!", + "id": "ETH_DMA_BUFFER_SIZE", + "name": "ETH_DMA_BUFFER_SIZE", + "range": null, + "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": null, + "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": null, + "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": "SOC_EMAC_SUPPORTED", + "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" + }, + { + "children": [], + "depends_on": null, + "help": "This option will enable injection of a custom tcp_transport handle, so the http operation\nwill be performed on top of the user defined transport abstraction (if configured)", + "id": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", + "name": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", + "range": null, + "title": "Enable custom transport", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", + "name": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "HTTPD_SERVER_EVENT_POST_TIMEOUT", + "name": "HTTPD_SERVER_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", + "name": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", + "name": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp-https-server", + "title": "ESP HTTPS server", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_REV_MIN_0", + "name": "ESP32C6_REV_MIN_0", + "range": null, + "title": "Rev v0.0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_REV_MIN_1", + "name": "ESP32C6_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "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-c6-revision", + "name": "ESP32C6_REV_MIN", + "title": "Minimum Supported ESP32-C6 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32C6_REV_MIN_FULL", + "name": "ESP32C6_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": "ESP32C6_REV_MAX_FULL", + "name": "ESP32C6_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32-C6 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\n\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\n\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.\n\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.\n\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.)\n\nNote that ESP32-C6 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()\nAPI to return a MAC for Ethernet, this can only be used with an external MAC peripheral.", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32C6_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP && !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, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS 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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 136 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED && ", + "help": "To be able to select this option, please select `RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED` first.\nThis option will be removed in IDF v6.0.", + "id": "RTC_CLK_SRC_INT_RC32K", + "name": "RTC_CLK_SRC_INT_RC32K", + "range": null, + "title": "Internal 32 kHz RC oscillator (NOT RECOMMENDED TO USE, READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Internal RC32K clock is unstable at extreme temperatures and is not recommended for use.", + "id": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED", + "name": "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED", + "range": null, + "title": "Confirm to use the unrecommended 32 kHz RC oscillator (READ DOCS FIRST)", + "type": "bool" + }, + { + "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- 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "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": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "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": "Whether 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-configurations", + "title": "GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DW_GDMA_ISR_IRAM_SAFE", + "name": "DW_GDMA_ISR_IRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "DW_GDMA_OBJ_DRAM_SAFE", + "name": "DW_GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", + "id": "DW_GDMA_ENABLE_DEBUG_LOG", + "name": "DW_GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-dw_gdma-configurations", + "title": "DW_GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", + "id": "DMA2D_OPERATION_FUNC_IN_IRAM", + "name": "DMA2D_OPERATION_FUNC_IN_IRAM", + "range": null, + "title": "Place 2D-DMA operation functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DMA2D_ISR_IRAM_SAFE", + "name": "DMA2D_ISR_IRAM_SAFE", + "range": null, + "title": "2D-DMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_DMA2D_SUPPORTED", + "id": "component-config-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "whether 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": "Always restart RGB LCD transmission in VSYNC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MIPI_DSI_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_DSI_ISR_IRAM_SAFE", + "name": "LCD_DSI_ISR_IRAM_SAFE", + "range": null, + "title": "DSI LCD ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-lcd-controller-configurations", + "title": "ESP-Driver:LCD Controller Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "help": "Max len in bytes per C2M chunk, operations with size over the max len will be\nsliced into multiple chunks.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "range": null, + "title": "Max len in bytes per C2M chunk", + "type": "hex" + } + ], + "depends_on": "SOC_CACHE_WRITEBACK_SUPPORTED", + "help": "`esp_cache_msync` C2M direction takes critical sections, which means during\nthe operation, the interrupts are disabled. Whereas Cache writebacks for\nlarge buffers could be especially time intensive, and might cause interrupts\nto be disabled for a significant amount of time.\n\nSometimes you want other ISRs to be responded during this C2M process.\nThis option is to slice one C2M operation into multiple chunks,\nwith CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN max len. This will give you\na breath during the C2M process as sometimes the C2M process is quite long.\n\nNote if the buffer processed by the `esp_cache_msync` (C2M sliced) is interrupted by an ISR,\nand this ISR also accesses this buffer, this may lead to data coherence issue.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "range": null, + "title": "Enable esp_cache_msync C2M chunked operation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-mm-memory-management-configurations", + "title": "ESP-MM: Memory Management Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": 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 every time 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": [], + "depends_on": null, + "help": "No implementation of ESP-NETIF functions is provided.\nThis option is used for adding a custom TCP/IP stack and defining related\nesp_netif functionality", + "id": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "name": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "range": null, + "title": "Use only ESP-NETIF headers", + "type": "bool" + }, + { + "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": "!ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "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_transmit() and esp_netif_receive() should generate events. This can be useful\nto blink data traffic indication lights.", + "id": "ESP_NETIF_REPORT_DATA_TRAFFIC", + "name": "ESP_NETIF_REPORT_DATA_TRAFFIC", + "range": null, + "title": "Report data traffic via events", + "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 available!", + "id": "ESP_NETIF_BRIDGE_EN", + "name": "ESP_NETIF_BRIDGE_EN", + "range": null, + "title": "Enable LwIP IEEE 802.1D bridge", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to use the DNS server which belongs to the selected default network interface.\nThis feature collects DNS server and netif information from LWIP core modules.\nWhenever a new default netif is selected, global DNS servers in LWIP are updated with the netif\nrelated servers.", + "id": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", + "name": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", + "range": null, + "title": "Enable DNS server per interface", + "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" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX", + "help": "This option controls whether the partition implementation checks\nif the flash is erased before writing to it.\nThis is necessary for SPIFFS, which expects to be able to write without erasing first.", + "id": "ESP_PARTITION_ERASE_CHECK", + "name": "ESP_PARTITION_ERASE_CHECK", + "range": null, + "title": "Check if flash is erased before writing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-partition-api-configuration", + "title": "Partition API Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_PHY_ENABLED", + "name": "ESP_PHY_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "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\ncalibration will 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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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": "ESP_PHY_ENABLED", + "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": "ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "help": "On some ESP targets, the USB PHY can interfere with WiFi thus lowering WiFi performance.\nAs a result, on those affected ESP targets, the ESP PHY library's initialization will automatically\ndisable the USB PHY to get best WiFi performance.\nThis option controls whether or not the ESP PHY library will keep the USB PHY enabled on\ninitialization.\n\nNote: This option can be disabled to increase WiFi performance. However, disabling this option will\nalso mean 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": "ESP_PHY_ENABLED", + "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": "ESP_PHY_ENABLED", + "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": "ESP_PHY_ENABLED", + "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 && ESP_PHY_ENABLED", + "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": "ESP_PHY_ENABLED", + "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" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "Select to support record and query phy used time.", + "id": "ESP_PHY_RECORD_USED_TIME", + "name": "ESP_PHY_RECORD_USED_TIME", + "range": null, + "title": "Record PHY used time", + "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 && SOC_PM_SUPPORTED) || __DOXYGEN__", + "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", + "id": "PM_ENABLE", + "name": "PM_ENABLE", + "range": null, + "title": "Support for power management", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LIGHT_SLEEP_SUPPORTED", + "help": "If enabled, about 2.1KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 310us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "id": "PM_SLP_IRAM_OPT", + "name": "PM_SLP_IRAM_OPT", + "range": null, + "title": "Put lightsleep related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, about 180Bytes of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 20us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "id": "PM_RTOS_IDLE_OPT", + "name": "PM_RTOS_IDLE_OPT", + "range": null, + "title": "Put RTOS IDLE related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "This feature is intended to disable all GPIO pins at automantic sleep to get a lower power mode.\nIf enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA current.\nIf you want to specifically use some pins normally as chip wakes when chip sleeps,\nyou can call 'gpio_sleep_sel_dis' to disable this feature on those pins.\nYou can also keep this feature on and call 'gpio_sleep_set_direction' and 'gpio_sleep_set_pull_mode'\nto have a different GPIO configuration at sleep.\nWarning: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", + "id": "PM_SLP_DISABLE_GPIO", + "name": "PM_SLP_DISABLE_GPIO", + "range": null, + "title": "Disable all GPIO when chip at sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_SLP_DEFAULT_PARAMS_OPT", + "name": "PM_SLP_DEFAULT_PARAMS_OPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (SOC_CPU_IN_TOP_DOMAIN && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP)", + "help": "This option is invisible to users, and it is only used for ci testing,\nenabling it in the application will increase the sleep and wake-up time overhead", + "id": "PM_CHECK_SLEEP_RETENTION_FRAME", + "name": "PM_CHECK_SLEEP_RETENTION_FRAME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "The value of this option determines the calibration interval of the RTC_FAST/SLOW clock during sleep when\npower management is enabled. When it is configured as N, the RTC_FAST/SLOW clock will be calibrated\nevery N times of lightsleep.\nDecreasing this value will increase the time the chip is in the active state, thereby increasing the\naverage power consumption of the chip.\nIncreasing this value can reduce the average power consumption, but when the external environment changes\ndrastically and the chip RTC_FAST/SLOW oscillator frequency drifts, it may cause system instability.", + "id": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "name": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "range": null, + "title": "Calibrate the RTC_FAST/SLOW clock every N times of light sleep", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "help": "Cache tag memory and CPU both belong to the CPU power domain.\nESP chips supports saving and restoring Cache tag memory before and after sleep,\nthis feature supports accesses to the external memory that was cached before sleep still\nbe cached when the CPU wakes up from a powerdowned CPU lightsleep.\nThis option controls the restore method for Cache tag memory in lightsleep.\nIf this option is enabled, the I/D-cache tag memory will be backuped to the internal RAM\nbefore sleep and restored upon wakeup.\nDepending on the the cache configuration, if this option is enabled,\nit will consume up to 9 KB of internal RAM.\nIf this option is disabled, all cached data won't be kept after sleep,\nthe DCache will be writeback before sleep and invalid all cached data after sleep,\nall accesses to external memory(Flash/PSRAM) will be cache missed after waking up,\nresulting in performance degradation due to increased memory accesses latency.", + "id": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "name": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "range": null, + "title": "Restore I/D-cache tag memory after power down CPU light sleep", + "type": "bool" + } + ], + "depends_on": "SOC_PM_SUPPORT_CPU_PD", + "help": "If enabled, the CPU will be powered down in light sleep,\nESP chips supports saving and restoring CPU's running context before and after light sleep,\nthe feature provides applications with seamless CPU powerdowned lightsleep without user awareness.\nBut this will takes up some internal memory.\nOn esp32c3 soc, enabling this option will consume 1.68 KB of internal RAM\nand will reduce sleep current consumption by about 100 uA.\nOn esp32s3 soc, enabling this option will consume 8.58 KB of internal RAM\nand will reduce sleep current consumption by about 650 uA.", + "id": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down CPU in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED", + "help": "If enabled, digital peripherals will 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": [], + "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": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcfully enable ECC constant time point multiplication operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_120", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_120", + "range": null, + "title": "120 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" + } + ], + "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": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [], + "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": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception 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_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.51V", + "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.64V", + "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.76V", + "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.92V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "3.10V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.27V", + "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 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 ESP32-C6 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": "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" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": 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": "This sets the interrupt priority level for esp_timer ISR.\nA higher value reduces interrupt latency by minimizing the timer processing delay.", + "id": "ESP_TIMER_INTERRUPT_LEVEL", + "name": "ESP_TIMER_INTERRUPT_LEVEL", + "range": [ + 1, + 1 + ], + "title": "Interrupt level", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This shows some hidden features of esp_timer.\nNote that they may break other features, use them with care.", + "id": "ESP_TIMER_SHOW_EXPERIMENTAL", + "name": "ESP_TIMER_SHOW_EXPERIMENTAL", + "range": null, + "title": "show esp_timer's experimental features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU0", + "name": "ESP_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU1", + "name": "ESP_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) esp_timer task is processed by CPU0.\n- \"CPU1\": esp_timer task is processed by CPU1.\n- \"No affinity\": esp_timer task can be processed by any CPU.", + "id": "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity", + "name": "ESP_TIMER_TASK_AFFINITY", + "title": "esp_timer task core affinity", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU0", + "name": "ESP_TIMER_ISR_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU1", + "name": "ESP_TIMER_ISR_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) timer interrupt is processed by CPU0.\n- \"CPU1\": timer interrupt is processed by CPU1.\n- \"No affinity\": timer interrupt can be processed by any CPU. It helps\nto reduce latency but there is a disadvantage it leads to the timer ISR\nrunning on every core. It increases the CPU time usage for timer ISRs\nby N on an N-core system.", + "id": "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity", + "name": "ESP_TIMER_ISR_AFFINITY", + "title": "timer interrupt core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also 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-esp-timer-high-resolution-timer-", + "title": "ESP Timer (High Resolution 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": [ + { + "children": [], + "depends_on": "ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_CONTROLLER_TARGET", + "name": "ESP_WIFI_CONTROLLER_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_TARGET_ESP32", + "name": "ESP_WIFI_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SOC_WIRELESS_HOST_SUPPORTED", + "help": null, + "id": "ESP_HOST_WIFI_ENABLED", + "name": "ESP_HOST_WIFI_ENABLED", + "range": null, + "title": "Host WiFi Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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, + 128 + ], + "title": "Max number of WiFi static RX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND) && ", + "help": null, + "id": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "name": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_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, + 64 + ], + "title": "WiFi AMPDU TX BA window size", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_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 preferred to allocate 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, + 64 + ], + "title": "WiFi AMPDU RX BA window size", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_CACHE_TX_BUFFER_NUM >= 2 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However\nthe default 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 occurrence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will\ndetect five of the root nodes, resolve the conflict, and re-detect more root nodes. This process will\nrepeat until all root node conflicts are resolved. However this process can generally take a very long\ntime.\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 on top of\nthe default 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\nidentified more 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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Set the maximum number of Wi-Fi management short buffers. These buffers are dynamically allocated,\nwith their size determined by the length of the management packet to be sent. When a management\npacket is less than 64 bytes, the Wi-Fi driver classifies it as a short management packet and\nassigns it to one of these buffers.", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nfor details.", + "id": "ESP_WIFI_ENABLE_WPA3_SAE", + "name": "ESP_WIFI_ENABLE_WPA3_SAE", + "range": null, + "title": "Enable WPA3-Personal", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nfor details.", + "id": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "name": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "range": null, + "title": "Enable OWE STA", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station enters the active state,\nit will work for at least ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME. If a data packet is received or sent\nduring this period, the time will be refreshed. If the time is up, but the station still has packets\nto receive or send, the time will also be refreshed. unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "range": [ + 8, + 60 + ], + "title": "Minimum active time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. If no packet has been\nsent within ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME, a null data packet will be sent\nto maintain the connection with the AP. unit: seconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "range": [ + 10, + 60 + ], + "title": "Maximum keep alive time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station knows through the beacon\nthat AP will send broadcast packet, it will wait for ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME\nbefore entering the sleep process. If a broadcast packet is received with more data bits, the time\nwill refreshed. unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", + "range": [ + 10, + 30 + ], + "title": "Minimum wait broadcast data time", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nkeys number. When 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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable WiFi Aware (NAN) feature.", + "id": "ESP_WIFI_NAN_ENABLE", + "name": "ESP_WIFI_NAN_ENABLE", + "range": null, + "title": "WiFi Aware", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_MBEDTLS_TLS_CLIENT && IDF_EXPERIMENTAL_FEATURES && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to support EAP with TLS v1.3.\nThis configuration still supports compatibility with EAP-TLS v1.2.\nPlease note that enabling this configuration will cause every application which\nuses TLS go for TLS1.3 if server supports that. TLS1.3 is still in development in mbedtls\nand there may be interoperability issues with this. Please modify your application to set\nmax version as TLS1.2 if you want to enable TLS1.3 only for WiFi connection.", + "id": "ESP_WIFI_EAP_TLS1_3", + "name": "ESP_WIFI_EAP_TLS1_3", + "range": null, + "title": "Enable EAP-TLS v1.3 Support for WiFi Enterprise connection", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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. In case your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibility 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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "WiFi RSSI threshold to trigger roaming value in dBm (-99 to -1). Values under -30 dbm\nmight lead to a flood of low rssi events. This interferes with normal functioning and\nTX/Rx performance.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", + "range": null, + "title": "WiFi RSSI threshold to trigger roaming", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Decide the offset by which to decrease the Low RSSI threshold set by ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD\nafter each failed attempt to roam. This allows for the station to keep scanning for better AP's after\nthe Low RSSI threshold is reached in a stepped manner, rather than only attempting to roam the first time\nthe current AP's RSSI breaches the set RSSI threshold.\nSetting 0 here may cause station to be flooded with low rssi events,\ntherefore that's not recommended to be kept.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", + "range": null, + "title": "Offset by which to reset the RSSI Threshold after attempt to roam.", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable to use a RSSI threshold to trigger roaming.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", + "range": null, + "title": "Use Low RSSI to trigger roaming.", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Threshold at which the station will begin scanning to find an AP with better RSSI.", + "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", + "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", + "range": null, + "title": "Threshold at which to begin periodic scanning for a better AP.", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Intervals at which station will periodically scan to check if better AP is available", + "id": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", + "name": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", + "range": null, + "title": "Time intervals (in seconds) at which station will initiate a scan", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Minimum RSSI difference b/w current AP and a potential roaming candidate AP\nto trigger a roaming attempt.", + "id": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", + "name": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", + "range": null, + "title": "RSSI difference b/w current AP and candidate AP to initiate connection", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Conduct periodic scans periodically to check if a better AP is available.", + "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", + "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", + "range": null, + "title": "Conduct periodic scans to check if a better AP is available", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-triggers", + "title": "Roaming triggers", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Roaming between APs that do not support 802.11kv.\nThis will allow station to roam even when connection is not BTM supported,\nby forcefully disconnecting from current AP and connecting to better AP.", + "id": "ESP_WIFI_ROAMING_LEGACY_ROAMING", + "name": "ESP_WIFI_ROAMING_LEGACY_ROAMING", + "range": null, + "title": "Support Legacy roaming approach", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ROAMING_LEGACY_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Retry threshold after which the station should stop using Network Assisted\nroaming methods and start using legacy roaming instead.", + "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", + "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", + "range": null, + "title": "Retry count after which to switch to legacy roaming", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_11KV_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Roaming between APs using network assisted Roaming.\nThis involves BSS Transition Management mechanisms outlined in 802.11v.\nNote that this moves the responsibility to the AP's network, and hence isn't\nguaranteed to cause the station to attempt to roam each time.", + "id": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", + "name": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", + "range": null, + "title": "Support Network Assisted roaming using 802.11kv", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-methods", + "title": "Roaming Methods", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Minimum duration of active scanning per channel in milliseconds.", + "id": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", + "name": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", + "range": null, + "title": "Minimum duration (in milliseconds) of station's per channel active scan", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Maximum duration of active scanning per channel in milliseconds.", + "id": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", + "name": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", + "range": null, + "title": "Maximum duration (in milliseconds) of station's per channel active scan time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "If connected, duration for which the station will return to it's home channel for Tx/Rx of\nframes stored in buffers between scanning on consecutive channels.", + "id": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", + "name": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", + "range": null, + "title": "Home channel dwell time scanning between consecutive channels", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Channels your wireless network operates on to allow for faster scanning.\nSpecify the channels(between 1-14) in a comma separated manner.", + "id": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", + "name": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", + "range": null, + "title": "Preferred channel list for scanning", + "type": "string" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Duration for which the results from the most recent scans can be used\nby the roaming app for determining the roaming candidates.", + "id": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", + "name": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", + "range": null, + "title": "Scan results expiry window (in seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Max candidates that can be considered while scanning as a part of the\nnetwork at one time.", + "id": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "name": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "range": null, + "title": "Max Candidates in the network", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-scan-configuration", + "title": "Scan Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Time to wait (in seconds) by station before registering for the RSSI event again\nor start continuous montoring to find better AP.", + "id": "ESP_WIFI_ROAMING_BACKOFF_TIME", + "name": "ESP_WIFI_ROAMING_BACKOFF_TIME", + "range": null, + "title": "Default time to wait between subsequent roaming attempts.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable this to send periodic neighbor report requests to the AP.\nThese neighbor report requests provide information about other APs in the same managed\nnetwork. This information is used for more intelligent roaming.", + "id": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", + "name": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", + "range": null, + "title": "Time interval (in seconds) between neighbor report requests to an AP", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "The RSSI threshold beyond which we start sending periodic neighbor report requests.", + "id": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", + "name": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", + "range": null, + "title": "Threshold for sending periodic neighbor report requests", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_11KV_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "This option will enable station to keep sending RRM neighbor list request to AP and\nupdate its internal list.", + "id": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", + "name": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", + "range": null, + "title": "Send periodic neighbor report request to AP for internal list updation", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app", + "title": "Configure roaming App", + "type": "menu" + } + ], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Espressif's roaming app to allow for efficient Wi-Fi roaming.\nThis includes configurable periodic environment scans, maintaining a cache of the\nbest APs, handling low rssi events etc.\n\nRisk Warning\nPlease note that this feature is still experimental and enabling this potentially can\nlead to unpredictable scanning, connection and roaming attempts.\nWe are still working on tuning and optimising this feature to ensure reliable and stable use.", + "id": "ESP_WIFI_ENABLE_ROAMING_APP", + "name": "ESP_WIFI_ENABLE_ROAMING_APP", + "range": null, + "title": "Advanced support for Wi-Fi Roaming (Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": [], + "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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_ENABLE_WIFI_RX_STATS && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": [], + "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Set the maximum number of queue that can be aggregated by the STA in the A-MPDU carried in the\nHE TB PPDU.", + "id": "ESP_WIFI_TX_HETB_QUEUE_NUM", + "name": "ESP_WIFI_TX_HETB_QUEUE_NUM", + "range": [ + 1, + 4 + ], + "title": "WiFi TX HE TB QUEUE number for STA HE TB PPDU transmission", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs.", + "id": "ESP_WIFI_ENABLE_DUMP_HESIGB", + "name": "ESP_WIFI_ENABLE_DUMP_HESIGB", + "range": null, + "title": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump MU CFO.", + "id": "ESP_WIFI_ENABLE_DUMP_MU_CFO", + "name": "ESP_WIFI_ENABLE_DUMP_MU_CFO", + "range": null, + "title": "Enable Wi-Fi dump MU CFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump NDPA frames.", + "id": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", + "name": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", + "range": null, + "title": "Enable Wi-Fi dump NDPA frames", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump BFRP frames.", + "id": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", + "name": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", + "range": null, + "title": "Enable Wi-Fi dump BFRP frames", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workarounds 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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilities to get the\nconfiguration in passphrase mode.\nNot recommended 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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "id": "component-config-wi-fi-wps-configuration-options", + "title": "WPS Configuration Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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)\n\nNote that when using bigger certificates on low-power chips without crypto\nhardware acceleration, it is recommended to adjust the task watchdog timer (TWDT)\nif it is enabled. For precise information on timing requirements, you can check\nperformance numbers at https://github.com/espressif/mbedtls/wiki/Performance-Numbers.", + "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_DATA_FORMAT_ELF", + "help": "Storing these sections can help with easier debugging and troubleshooting.\nHowever, additional storage space will be required in the core dump partition.\nAt least 128KB should be reserved, but the actual amount required may vary based\non the application's DRAM usage.\nNote that sections located in external RAM will not be stored.", + "id": "ESP_COREDUMP_CAPTURE_DRAM", + "name": "ESP_COREDUMP_CAPTURE_DRAM", + "range": null, + "title": "Include whole .bss and .data sections and heap data into core dump file", + "type": "bool" + }, + { + "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": "ESP_COREDUMP_ENABLE_TO_FLASH", + "help": "Don't overwrite an existing core dump already present in flash.\nEnable this option to only keep the first of multiple core dumps.\n\nIf enabled, the core dump partition must be erased before the first\ncore dump can be written.", + "id": "ESP_COREDUMP_FLASH_NO_OVERWRITE", + "name": "ESP_COREDUMP_FLASH_NO_OVERWRITE", + "range": null, + "title": "Don't overwrite existing core dump", + "type": "bool" + }, + { + "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 around 1300-1800\ndepending on the chosen checksum calculation method. SHA256 method needs more stack space than CRC32.\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": "Portuguese (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 lengthy\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": "Prefer external RAM when allocating FATFS buffers", + "type": "bool" + }, + { + "children": [], + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_NONE", + "name": "FATFS_USE_STRFUNC_NONE", + "range": null, + "title": "0:Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", + "name": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", + "range": null, + "title": "1:Enable without LF-CRLF conversion", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", + "name": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", + "range": null, + "title": "2:Enable with LF-CRLF conversion", + "type": "bool" + } + ], + "depends_on": null, + "help": "These are specialized alternatives to stdio functions for working\ndirectly with FATFS without VFS. Legacy code may need functions,\nbut for new development, it is advised to use stdio under VFS.\n\n0: Disable. FF_PRINT_LLI, FF_PRINT_FLOAT and FF_STRF_ENCODE have no effect.\n1: Enable without LF-CRLF conversion.\n2: Enable with LF-CRLF conversion.", + "id": "component-config-fat-filesystem-support-enable-string-functions-f_gets-f_putc-f_puts-and-f_printf-", + "name": "FATFS_USE_STRFUNC_CHOICE", + "title": "Enable string functions, f_gets(), f_putc(), f_puts() and f_printf()", + "type": "choice" + }, + { + "children": [], + "depends_on": "!FATFS_USE_STRFUNC_NONE", + "help": null, + "id": "FATFS_PRINT_LLI", + "name": "FATFS_PRINT_LLI", + "range": null, + "title": "Make fatfs f_printf() support long long argument", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FATFS_USE_STRFUNC_NONE", + "help": null, + "id": "FATFS_PRINT_FLOAT", + "name": "FATFS_PRINT_FLOAT", + "range": null, + "title": "Make fatfs f_printf() support floating point argument", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_ANSI", + "name": "FATFS_STRF_ENCODE_ANSI", + "range": null, + "title": "0:ANSI/OEM in current CP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF16LE", + "name": "FATFS_STRF_ENCODE_UTF16LE", + "range": null, + "title": "1:Unicode in UTF-16LE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF16BE", + "name": "FATFS_STRF_ENCODE_UTF16BE", + "range": null, + "title": "2:Unicode in UTF-16BE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF8", + "name": "FATFS_STRF_ENCODE_UTF8", + "range": null, + "title": "3:Unicode in UTF-8", + "type": "bool" + } + ], + "depends_on": "!FATFS_LFN_NONE && !FATFS_USE_STRFUNC_NONE", + "help": "When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character\nencoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE\nto be read/written via those functions.\n0: ANSI/OEM in current CP\n1: Unicode in UTF-16LE\n2: Unicode in UTF-16BE\n3: Unicode in UTF-8", + "id": "component-config-fat-filesystem-support-fatfs-string-functions-convert-character-encoding", + "name": "FATFS_STRF_ENCODE_CHOICE", + "title": "FatFS string functions: convert character encoding", + "type": "choice" + }, + { + "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" + }, + { + "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" + }, + { + "children": [], + "depends_on": null, + "help": "Allows FATFS volume label to be specified using f_setlabel", + "id": "FATFS_USE_LABEL", + "name": "FATFS_USE_LABEL", + "range": null, + "title": "Use FATFS volume label", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the whole link operation (including file copying) is performed under lock.\nThis ensures that the link operation is atomic, but may cause performance for large files.\nIt may create less fragmented file copy.", + "id": "FATFS_LINK_LOCK", + "name": "FATFS_LINK_LOCK", + "range": null, + "title": "Perform the whole link operation under lock", + "type": "bool" + }, + { + "children": [], + "depends_on": "CONFIG_WL_SECTOR_SIZE_4096", + "help": "If enabled, the buffers used by FATFS will be allocated separately from the rest of the structure.\nThis option is useful when using multiple FATFS instances with different\nsector sizes, as the buffers will be allocated according to the sector size.\nIf disabled, the greatest sector size will be used for all FATFS instances.\n(In most cases, this would be the sector size of Wear Levelling library)\nThis might cause more memory to be used than necessary.", + "id": "FATFS_USE_DYN_BUFFERS", + "name": "FATFS_USE_DYN_BUFFERS", + "range": null, + "title": "Use dynamic buffers", + "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 vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_DISABLED", + "name": "HEAP_POISONING_DISABLED", + "range": null, + "title": "Basic (no poisoning)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_LIGHT", + "name": "HEAP_POISONING_LIGHT", + "range": null, + "title": "Light impact", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_COMPREHENSIVE", + "name": "HEAP_POISONING_COMPREHENSIVE", + "range": null, + "title": "Comprehensive", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\n\nSee the \"Heap Memory Debugging\" page of the IDF documentation\nfor a description of each level of heap corruption detection.", + "id": "component-config-heap-memory-debugging-heap-corruption-detection", + "name": "HEAP_CORRUPTION_DETECTION", + "title": "Heap corruption detection", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_OFF", + "name": "HEAP_TRACING_OFF", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_STANDALONE", + "name": "HEAP_TRACING_STANDALONE", + "range": null, + "title": "Standalone", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_TOHOST", + "name": "HEAP_TRACING_TOHOST", + "range": null, + "title": "Host-based", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables the heap tracing API defined in esp_heap_trace.h.\n\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\nSo it's best to keep it disabled unless tracing is being used.", + "id": "component-config-heap-memory-debugging-heap-tracing", + "name": "HEAP_TRACING_DEST", + "title": "Heap tracing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disables heap tracing API.", + "id": "HEAP_TRACING", + "name": "HEAP_TRACING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "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": [ + 2, + 100 + ], + "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": [ + -120, + 0 + ], + "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": [ + 1, + 100 + ], + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", + "id": "component-config-log-log-level-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", + "id": "component-config-log-log-level-maximum-log-verbosity", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "NO_SYMBOL && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-format-timestamp", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-format", + "title": "Format", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log", + "title": "Log", + "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": "The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nSockets 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 253. If using value above 61, update CMakeLists defining\nFD_SETSIZE to the number of sockets used plus the\nexpected open files (minimum of +3 for stdout, stderr and stdin).", + "id": "LWIP_MAX_SOCKETS", + "name": "LWIP_MAX_SOCKETS", + "range": [ + 1, + 253 + ], + "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", + "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", + "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": [ + { + "children": [], + "depends_on": "!LWIP_AUTOIP && ", + "help": null, + "id": "LWIP_DHCP_DOES_ARP_CHECK", + "name": "LWIP_DHCP_DOES_ARP_CHECK", + "range": null, + "title": "DHCP provides simple ARP check", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_DHCP_DOES_ACD_CHECK", + "name": "LWIP_DHCP_DOES_ACD_CHECK", + "range": null, + "title": "DHCP provides Address Conflict Detection (ACD)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", + "name": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", + "range": null, + "title": "DHCP does not detect conflict on the offered IP", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Choose the preferred way of DHCP client to check if the offered address\nis available:\n* Using Address Conflict Detection (ACD) module assures that the offered IP address\nis properly probed and announced before binding in DHCP. This conforms to RFC5227,\nbut takes several seconds.\n* Using ARP check, we only send two ARP requests to check for replies. This process\nlasts 1 - 2 seconds.\n* No conflict detection: We directly bind the offered address.", + "id": "component-config-lwip-choose-how-dhcp-validates-offered-ip", + "name": "LWIP_DHCP_CHECKS_OFFERED_ADDRESS", + "title": "Choose how DHCP validates offered IP", + "type": "choice" + }, + { + "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" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "This allows the DNS option to be optional in the DHCP offers,\ndepending on the server's runtime configuration.\nWhen enabled, the DHCP server will always add the DNS option to DHCP responses.\nIf a DNS server is not explicitly configured, the server's IP address will be used\nas the fallback for the DNS option.\nWhen disabled, the DHCP server will only include the DNS option in responses\nif a DNS server has been explicitly configured.\nThis option will be removed in IDF v6.x", + "id": "LWIP_DHCPS_ADD_DNS", + "name": "LWIP_DHCPS_ADD_DNS", + "range": null, + "title": "Always add DNS option in DHCP responses", + "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 (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 receive 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": [], + "depends_on": null, + "help": "Set TCP accept mail box size. Generally bigger value means supporting larger backlogs\nbut more memory. The recommended value is 6, but applications can set it to a lower value\nif listening servers are meant to have a smaller backlog.\n\nTCP accept mail box is a per socket mail box, when the application listens for connections\nwith a given listening TCP socket. If the mailbox is full, LWIP will send a RST packet and\nthe client will fail to connect.", + "id": "LWIP_TCP_ACCEPTMBOX_SIZE", + "name": "LWIP_TCP_ACCEPTMBOX_SIZE", + "range": [ + 1, + 64 + ], + "title": "Default TCP accept 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 && !SPIRAM_IGNORE_NOTFOUND", + "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 receive 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": [], + "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_IPV6", + "help": "Maximum number of entries in IPv6 on-link prefixes cache", + "id": "LWIP_IPV6_ND6_NUM_PREFIXES", + "name": "LWIP_IPV6_ND6_NUM_PREFIXES", + "range": null, + "title": "Max number of entries in IPv6 on-link prefixes cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Maximum number of entries in IPv6 default routers cache", + "id": "LWIP_IPV6_ND6_NUM_ROUTERS", + "name": "LWIP_IPV6_ND6_NUM_ROUTERS", + "range": null, + "title": "Max number of entries in IPv6 default routers cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Maximum number of entries in IPv6 destinations cache", + "id": "LWIP_IPV6_ND6_NUM_DESTINATIONS", + "name": "LWIP_IPV6_ND6_NUM_DESTINATIONS", + "range": null, + "title": "Max number of entries in IPv6 destinations cache", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV4", + "help": "Enable IPCP protocol in PPP negotiations, which assigns IPv4 addresses to the PPP client,\nas well as IPv4 DNS servers.\nYou can disable this if your modem supports IPv6 only.", + "id": "LWIP_PPP_ENABLE_IPV4", + "name": "LWIP_PPP_ENABLE_IPV4", + "range": null, + "title": "Enable IPV4 support for PPP connections (IPCP)", + "type": "bool" + }, + { + "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" + }, + { + "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": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable to use PPP server", + "id": "LWIP_PPP_SERVER_SUPPORT", + "name": "LWIP_PPP_SERVER_SUPPORT", + "range": null, + "title": "Enable PPP server support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable support for VJ header compression.\nPlease disable this if you're using NAPT on PPP interface,\nsince the compressed IP header might not be correctly interpreted\nin NAT causing the compressed packet to be dropped.", + "id": "LWIP_PPP_VJ_HEADER_COMPRESSION", + "name": "LWIP_PPP_VJ_HEADER_COMPRESSION", + "range": null, + "title": "Enable VJ IP Header compression", + "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": [], + "depends_on": "LWIP_PPP_SUPPORT && !LWIP_PPP_MPPE_SUPPORT && !LWIP_PPP_MSCHAP_SUPPORT", + "help": "This option uses mbedTLS crypto functions (instead of internal PolarSSL\nimplementation) for PPP authentication modes (PAP, CHAP, etc.).\nYou can use this option to address symbol duplication issues, since\nthe internal functions are not namespaced (e.g. md5_init()).", + "id": "LWIP_USE_EXTERNAL_MBEDTLS", + "name": "LWIP_USE_EXTERNAL_MBEDTLS", + "range": null, + "title": "Use mbedTLS instead of internal polarSSL", + "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": [ + { + "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 acquired 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 acquired 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" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SNTP_STARTUP_DELAY", + "help": "RFC 4330 recommends a startup delay before sending the initial request.\nLWIP calculates this delay to a random number of milliseconds between 0 and this value.", + "id": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", + "name": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", + "range": [ + 100, + 300000 + ], + "title": "Maximum startup delay (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "It is recommended (RFC 4330) to delay the initial request after by a random timeout from 1 to 5 minutes\nto reduce potential load of NTP servers after simultaneous power-up of many devices.\nThis option disables this initial delay. Please use this option with care, it could improve\na single device responsiveness but might cause peaks on the network after reset.\nAnother option to address responsiveness of devices while using the initial random delay\nis to adjust LWIP_SNTP_MAXIMUM_STARTUP_DELAY.", + "id": "LWIP_SNTP_STARTUP_DELAY", + "name": "LWIP_SNTP_STARTUP_DELAY", + "range": null, + "title": "Enable SNTP startup delay", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-sntp", + "title": "SNTP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Maximum number of IP addresses that can be returned by DNS queries for a single host.", + "id": "LWIP_DNS_MAX_HOST_IP", + "name": "LWIP_DNS_MAX_HOST_IP", + "range": null, + "title": "Maximum number of IP addresses per host", + "type": "int" + }, + { + "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" + }, + { + "children": [], + "depends_on": null, + "help": "This option allows collecting DNS server settings per netif using\nconfigurable callback function.\nIt's typically used with CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF\nwhich configures a callback to collect the DNS info on esp_netif layer.", + "id": "LWIP_DNS_SETSERVER_WITH_NETIF", + "name": "LWIP_DNS_SETSERVER_WITH_NETIF", + "range": null, + "title": "Enable DNS server settings with netif", + "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 (without callback).\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": [], + "depends_on": null, + "help": "This hidden option helps configure the DNS external resolve\nhook for external components like OpenThread. It ensures that\n`LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM` is selected without directly\nadding a dependency in the choice construct.", + "id": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", + "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", + "name": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", + "name": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables custom DNS resolve hook (with callback).\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-dns-external-resolve-hook", + "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE", + "title": "DNS 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 IDF implementation,\nwhich drops all incoming IPv6 traffic if the interface has no link local address.\n(this default implementation is \"weak\" and could be still overwritten\nin the application if some additional IPv6 input packet filtering is needed)\nSetting this to \"none\" removes this default filter and conforms to the lwIP\nimplementation (which accepts multicasts even if the interface has no link local address)\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 number 7 core for using PKCS number 7-formatted signatures.", + "id": "MBEDTLS_PKCS7_C", + "name": "MBEDTLS_PKCS7_C", + "range": null, + "title": "Enable PKCS number 7", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID", + "help": "Controls the use of record plaintext padding in TLS 1.3 and\nwhen using the Connection ID extension in DTLS 1.2.\n\nThe padding will always be chosen so that the length of the\npadded plaintext is a multiple of the value of this option.\n\nNotes:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", + "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "range": null, + "title": "Record plaintext padding", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for incoming DTLS messages", + "id": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "name": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for incoming DTLS messages", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for outgoing DTLS messages", + "id": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "name": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for outgoing DTLS messages", + "type": "int" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable support for the DTLS Connection ID extension which allows to\nidentify DTLS connections across changes in the underlying transport.", + "id": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "name": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "range": null, + "title": "Support for the DTLS Connection ID extension", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable support for negotiation of DTLS-SRTP (RFC 5764) through the use_srtp extension.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SSL_DTLS_SRTP", + "name": "MBEDTLS_SSL_DTLS_SRTP", + "range": null, + "title": "Enable support for negotiation of DTLS-SRTP (RFC 5764)", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "id": "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations", + "title": "DTLS-based configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-mbedtls-v3-x-related", + "title": "mbedTLS v3.x related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "range": null, + "title": "Use the full default certificate bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use only the most common certificates from the default bundles, reducing the size with 50%,\nwhile still having around 99% coverage.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "range": null, + "title": "Use only the most common certificates from the default bundles", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "range": null, + "title": "Do not use the default certificate bundle", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options", + "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", + "title": "Default certificate bundle options", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "help": "Name of the custom certificate directory or file. This path is evaluated\nrelative to the project root directory.", + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "range": null, + "title": "Custom certificate bundle path", + "type": "string" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "range": null, + "title": "Add custom certificates to the default bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && !MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "help": "Include the deprecated list of root certificates in the bundle.\nThis list gets updated when a certificate is removed from the Mozilla's\nNSS root certificate store. This config can be enabled if you would like\nto ensure that none of the certificates that were deployed in the product\nare affected because of the update to bundle. In turn, enabling this\nconfig keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be be removed in ESP-IDF (next) major release", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "range": null, + "title": "Add deprecated root certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "range": null, + "title": "Maximum no of certificates allowed in certificate bundle", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable support for large number of default root certificates\n\nWhen enabled this option allows user to store default as well\nas customer specific root certificates in compressed format rather\nthan storing full certificate. For the root certificates the public key and the subject name\nwill be stored.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE", + "range": null, + "title": "Enable trusted root certificate bundle", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificate-bundle", + "title": "Certificate Bundle", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", + "id": "MBEDTLS_ECP_RESTARTABLE", + "name": "MBEDTLS_ECP_RESTARTABLE", + "range": null, + "title": "Enable mbedTLS ecp restartable", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_DES_C", + "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", + "id": "MBEDTLS_CMAC_C", + "name": "MBEDTLS_CMAC_C", + "range": null, + "title": "Enable CMAC mode for block ciphers", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_AES_USE_INTERRUPT", + "help": "This config helps to set the interrupt priority level for the AES peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", + "id": "MBEDTLS_AES_INTERRUPT_LEVEL", + "name": "MBEDTLS_AES_INTERRUPT_LEVEL", + "range": [ + 0, + 3 + ], + "title": "AES hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", + "help": "Use an interrupt to coordinate long AES operations.\n\nThis allows other code to run on the CPU while an AES operation is pending.\nOtherwise the CPU busy-waits.", + "id": "MBEDTLS_AES_USE_INTERRUPT", + "name": "MBEDTLS_AES_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for long AES operations", + "type": "bool" + }, + { + "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": [ + 0, + 3 + ], + "title": "MPI hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI", + "help": "Use an interrupt to coordinate long MPI operations.\n\nThis allows other code to run on the CPU while an MPI operation is pending.\nOtherwise the CPU busy-waits.", + "id": "MBEDTLS_MPI_USE_INTERRUPT", + "name": "MBEDTLS_MPI_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for MPI exp-mod operations", + "type": "bool" + } + ], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED", + "help": "Enable hardware accelerated multiple precision integer operations.\n\nHardware accelerated multiplication, modulo multiplication,\nand modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.\n\nThese operations are used by RSA.", + "id": "MBEDTLS_HARDWARE_MPI", + "name": "MBEDTLS_HARDWARE_MPI", + "range": null, + "title": "Enable hardware MPI (bignum) acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED", + "help": "Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\n\nDue to a hardware limitation, on the ESP32 hardware acceleration is only\nguaranteed if SHA digests are calculated one at a time. If more\nthan one SHA digest is calculated at the same time, one will\nbe calculated fully in hardware and the rest will be calculated\n(at least partially calculated) in software. This happens automatically.\n\nSHA hardware acceleration is faster than software in some situations but\nslower in others. You should benchmark to find the best setting for you.", + "id": "MBEDTLS_HARDWARE_SHA", + "name": "MBEDTLS_HARDWARE_SHA", + "range": null, + "title": "Enable hardware SHA acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECC", + "help": "Fallback to software implementation of ECC point multiplication and point verification\nfor curves not supported in hardware.", + "id": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "name": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "range": null, + "title": "Fallback to software implementation for curves not supported in hardware", + "type": "bool" + } + ], + "depends_on": "SOC_ECC_SUPPORTED", + "help": "Enable hardware accelerated ECC point multiplication and point verification for points\non curve SECP192R1 and SECP256R1 in mbedTLS", + "id": "MBEDTLS_HARDWARE_ECC", + "name": "MBEDTLS_HARDWARE_ECC", + "range": null, + "title": "Enable hardware ECC acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Use ROM MD5 in mbedTLS.", + "id": "MBEDTLS_ROM_MD5", + "name": "MBEDTLS_ROM_MD5", + "range": null, + "title": "Use MD5 implementation in ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "The ECDSA peripheral before ECO5 does not offer constant time ECDSA sign operation.\nThis time can be observed through power profiling of the device,\nmaking the ECDSA private key vulnerable to side-channel timing attacks.\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nIt is highly recommended to also enable Secure Boot for the device in addition to this countermeasure\nso that only trusted software can execute on the device.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "range": null, + "title": "Mask original ECDSA sign operation under dummy sign operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "This option adds a delay after the actual ECDSA signature operation\nso that the entire operation appears to be constant time for the software.\nThis fix helps in protecting the device only in case of remote timing attack on the ECDSA private key.\nFor e.g., When an interface is exposed by the device to perform ECDSA signature\nof an arbitrary message.\nThe signature time would appear to be constant to the external entity after enabling\nthis option.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "range": null, + "title": "Make ECDSA signature operation pseudo constant time for software", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "id": "component-config-mbedtls-enable-ecdsa-signing-using-on-chip-ecdsa-peripheral-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral", + "title": "Enable Software Countermeasure for ECDSA signing using on-chip ECDSA peripheral", + "type": "menu" + } + ], + "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.", + "id": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "name": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "range": null, + "title": "Enable hardware ECDSA sign acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", + "id": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "name": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "range": null, + "title": "Enable hardware ECDSA verify acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "Enabling this config will provide users with a function\n\"mbedtls_platform_set_time()\" that allows to set an alternative\ntime function pointer.", + "id": "MBEDTLS_PLATFORM_TIME_ALT", + "name": "MBEDTLS_PLATFORM_TIME_ALT", + "range": null, + "title": "Enable mbedtls time support: platform-specific", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "Enables X.509 certificate expiry checks in mbedTLS.\n\nIf this option is disabled (default) then X.509 certificate\n\"valid from\" and \"valid to\" timestamp fields are ignored.\n\nIf this option is enabled, these fields are compared with the\ncurrent system date and time. The time is retrieved using the\nstandard time() and gmtime() functions. If the certificate is not\nvalid for the current system time then verification will fail with\ncode MBEDTLS_X509_BADCERT_FUTURE or MBEDTLS_X509_BADCERT_EXPIRED.\n\nEnabling this option requires adding functionality in the firmware\nto set the system clock to a valid timestamp before using TLS. The\nrecommended way to do this is via ESP-IDF's SNTP functionality, but\nany method can be used.\n\nIn the case where only a small number of certificates are trusted by\nthe device, please carefully consider the tradeoffs of enabling this\noption. There may be undesired consequences, for example if all\ntrusted certificates expire while the device is offline and a TLS\nconnection is required to update. Or if an issue with the SNTP\nserver means that the system time is invalid for an extended period\nafter a reset.", + "id": "MBEDTLS_HAVE_TIME_DATE", + "name": "MBEDTLS_HAVE_TIME_DATE", + "range": null, + "title": "Enable mbedtls certificate expiry check", + "type": "bool" + } + ], + "depends_on": "!ESP_TIME_FUNCS_USE_NONE", + "help": "Enable use of time.h functions (time() and gmtime()) by mbedTLS.\n\nThis option doesn't require the system time to be correct, but enables\nfunctionality that requires relative timekeeping - for example periodic\nexpiry of TLS session tickets or session cache entries.\n\nDisabling this option will save some firmware size, particularly if\nthe rest of the firmware doesn't call any standard 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": [], + "depends_on": null, + "help": "Enabling MBEDTLS_SHA3_C adds support for SHA3.\nEnabling this configuration option increases the flash footprint\nby almost 4KB.", + "id": "MBEDTLS_SHA3_C", + "name": "MBEDTLS_SHA3_C", + "range": null, + "title": "Enable the SHA3 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "range": null, + "title": "Server & Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_ONLY", + "name": "MBEDTLS_TLS_SERVER_ONLY", + "range": null, + "title": "Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_CLIENT_ONLY", + "name": "MBEDTLS_TLS_CLIENT_ONLY", + "range": null, + "title": "Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_DISABLED", + "name": "MBEDTLS_TLS_DISABLED", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "mbedTLS can be compiled with protocol support for the TLS\nserver, TLS client, or both server and client.\n\nReducing the number of TLS roles supported saves code size.", + "id": "component-config-mbedtls-tls-protocol-role", + "name": "MBEDTLS_TLS_MODE", + "title": "TLS Protocol Role", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_SERVER", + "name": "MBEDTLS_TLS_SERVER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_CLIENT", + "name": "MBEDTLS_TLS_CLIENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_ENABLED", + "name": "MBEDTLS_TLS_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", + "id": "MBEDTLS_KEY_EXCHANGE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_PSK", + "range": null, + "title": "Enable PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "range": null, + "title": "Enable DHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "range": null, + "title": "Enable ECDHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "range": null, + "title": "Enable RSA-PSK based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\n\nLeaving this options disabled will save code size if they are not used.", + "id": "MBEDTLS_PSK_MODES", + "name": "MBEDTLS_PSK_MODES", + "range": null, + "title": "Enable pre-shared-key ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_RSA", + "range": null, + "title": "Enable RSA-only based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "range": null, + "title": "Enable DHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "range": null, + "title": "Enable ECDHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "range": null, + "title": "Enable ECDHE-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "range": null, + "title": "Enable ECDH-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "range": null, + "title": "Enable ECDH-RSA based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "range": null, + "title": "Support Elliptic Curve based ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "name": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "range": null, + "title": "Enable ECJPAKE based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-tls-key-exchange-methods", + "title": "TLS Key Exchange Methods", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2", + "help": "The two main uses of renegotiation are (1) refresh keys on long-lived\nconnections and (2) client authentication after the initial handshake.\nIf you don't need renegotiation, disabling it will save code size and\nreduce the possibility of abuse/vulnerability.", + "id": "MBEDTLS_SSL_RENEGOTIATION", + "name": "MBEDTLS_SSL_RENEGOTIATION", + "range": null, + "title": "Support TLS renegotiation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_2", + "name": "MBEDTLS_SSL_PROTO_TLS1_2", + "range": null, + "title": "Support TLS 1.2 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Provisions for GM/T SSL 1.1 support", + "id": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "name": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "range": null, + "title": "Support GM/T SSL 1.1 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_2", + "help": "Requires TLS 1.2 to be enabled for DTLS 1.2", + "id": "MBEDTLS_SSL_PROTO_DTLS", + "name": "MBEDTLS_SSL_PROTO_DTLS", + "range": null, + "title": "Support DTLS protocol (all versions)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Disabling this option will save some code size if it is not needed.", + "id": "MBEDTLS_SSL_ALPN", + "name": "MBEDTLS_SSL_ALPN", + "range": null, + "title": "Support ALPN (Application Layer Protocol Negotiation)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Client Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C)", + "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Server Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_C", + "name": "MBEDTLS_AES_C", + "range": null, + "title": "AES block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_CAMELLIA_C", + "name": "MBEDTLS_CAMELLIA_C", + "range": null, + "title": "Camellia block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the DES block cipher to support 3DES-based TLS ciphersuites.\n\n3DES is vulnerable to the Sweet32 attack and should only be enabled\nif absolutely necessary.", + "id": "MBEDTLS_DES_C", + "name": "MBEDTLS_DES_C", + "range": null, + "title": "DES block cipher (legacy, insecure)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", + "id": "MBEDTLS_BLOWFISH_C", + "name": "MBEDTLS_BLOWFISH_C", + "range": null, + "title": "Blowfish block cipher (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the XTEA block cipher.", + "id": "MBEDTLS_XTEA_C", + "name": "MBEDTLS_XTEA_C", + "range": null, + "title": "XTEA block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_CCM_C", + "name": "MBEDTLS_CCM_C", + "range": null, + "title": "CCM (Counter with CBC-MAC) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", + "id": "MBEDTLS_GCM_C", + "name": "MBEDTLS_GCM_C", + "range": null, + "title": "GCM (Galois/Counter) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C", + "help": "Enable NIST key wrapping and key wrapping padding.", + "id": "MBEDTLS_NIST_KW_C", + "name": "MBEDTLS_NIST_KW_C", + "range": null, + "title": "NIST key wrapping (KW) and KW padding (KWP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-symmetric-ciphers", + "title": "Symmetric Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the RIPEMD-160 hash algorithm.", + "id": "MBEDTLS_RIPEMD160_C", + "name": "MBEDTLS_RIPEMD160_C", + "range": null, + "title": "Enable RIPEMD-160 hash algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable decoding/parsing of PEM formatted certificates.\n\nIf your certificates are all in the simpler DER format, disabling\nthis option will save some code size.", + "id": "MBEDTLS_PEM_PARSE_C", + "name": "MBEDTLS_PEM_PARSE_C", + "range": null, + "title": "Read & Parse PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", + "id": "MBEDTLS_PEM_WRITE_C", + "name": "MBEDTLS_PEM_WRITE_C", + "range": null, + "title": "Write PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Revocation Lists.", + "id": "MBEDTLS_X509_CRL_PARSE_C", + "name": "MBEDTLS_X509_CRL_PARSE_C", + "range": null, + "title": "X.509 CRL parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Signing Requests", + "id": "MBEDTLS_X509_CSR_PARSE_C", + "name": "MBEDTLS_X509_CSR_PARSE_C", + "range": null, + "title": "X.509 CSR parsing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificates", + "title": "Certificates", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enhance support for reading EC keys using variants of SEC1 not allowed by\nRFC 5915 and RFC 5480.", + "id": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "name": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "range": null, + "title": "Enhance support for reading EC keys", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable the support for parsing public keys of type Short Weierstrass\n(MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX) which are using the\ncompressed point format. This parsing is done through ECP module's functions.", + "id": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "name": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "range": null, + "title": "Enable the support for parsing public keys of type Short Weierstrass", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ECP_C", + "is_menuconfig": true, + "name": "MBEDTLS_ECP_C", + "range": null, + "title": "Elliptic Curve Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable DHM. Needed to use DHE-xxx TLS ciphersuites.\n\nNote that the security of Diffie-Hellman key exchanges depends on\na suitable prime being used for the exchange. Please see detailed\nwarning text about this in file `mbedtls/dhm.h` file.", + "id": "MBEDTLS_DHM_C", + "name": "MBEDTLS_DHM_C", + "range": null, + "title": "Diffie-Hellman-Merkle key exchange (DHM)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C", + "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDSA_C", + "name": "MBEDTLS_ECDSA_C", + "range": null, + "title": "Elliptic Curve DSA", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDH_C", + "name": "MBEDTLS_ECDH_C", + "range": null, + "title": "Elliptic Curve Diffie-Hellman (ECDH)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECJPAKE_C", + "name": "MBEDTLS_ECJPAKE_C", + "range": null, + "title": "Elliptic curve J-PAKE", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "range": null, + "title": "Enable SECP192R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "range": null, + "title": "Enable SECP224R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "range": null, + "title": "Enable SECP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP384R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "range": null, + "title": "Enable SECP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP521R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "range": null, + "title": "Enable SECP521R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "range": null, + "title": "Enable SECP192K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "range": null, + "title": "Enable SECP224K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "range": null, + "title": "Enable SECP256K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "range": null, + "title": "Enable BP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "range": null, + "title": "Enable BP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "range": null, + "title": "Enable BP512R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for CURVE25519 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "range": null, + "title": "Enable CURVE25519 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_ECP_NIST_OPTIM", + "name": "MBEDTLS_ECP_NIST_OPTIM", + "range": null, + "title": "NIST 'modulo p' optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "This configuration option enables optimizations to speedup (about 3 ~ 4 times) the ECP\nfixed point multiplication using pre-computed tables in the flash memory.\nEnabling this configuration option increases the flash footprint\n(about 29KB if all Elliptic Curve selected) in the application binary.\n\n# end of Elliptic Curve options", + "id": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "name": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "range": null, + "title": "Enable fixed-point multiplication optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for Poly1305 MAC algorithm.", + "id": "MBEDTLS_POLY1305_C", + "name": "MBEDTLS_POLY1305_C", + "range": null, + "title": "Poly1305 MAC algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_C", + "help": "Enable support for ChaCha20-Poly1305 AEAD algorithm.", + "id": "MBEDTLS_CHACHAPOLY_C", + "name": "MBEDTLS_CHACHAPOLY_C", + "range": null, + "title": "ChaCha20-Poly1305 AEAD algorithm", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable support for Chacha20 stream cipher.", + "id": "MBEDTLS_CHACHA20_C", + "name": "MBEDTLS_CHACHA20_C", + "range": null, + "title": "Chacha20 stream cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for the Hashed Message Authentication Code\n(HMAC)-based key derivation function (HKDF).", + "id": "MBEDTLS_HKDF_C", + "name": "MBEDTLS_HKDF_C", + "range": null, + "title": "HKDF algorithm (RFC 5869)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable threading alt to allow your own alternate threading implementation.", + "id": "MBEDTLS_THREADING_ALT", + "name": "MBEDTLS_THREADING_ALT", + "range": null, + "title": "Enable threading alternate implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable the pthread wrapper layer for the threading layer.", + "id": "MBEDTLS_THREADING_PTHREAD", + "name": "MBEDTLS_THREADING_PTHREAD", + "range": null, + "title": "Enable threading pthread implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "If you do intend to use contexts between threads, you will need to enable\nthis layer to prevent race conditions.", + "id": "MBEDTLS_THREADING_C", + "name": "MBEDTLS_THREADING_C", + "range": null, + "title": "Enable the threading abstraction layer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables mbedtls_strerror() for converting error codes to error strings.\nDisabling this config can save some code/rodata size as the error\nstring conversion implementation is replaced with an empty stub.", + "id": "MBEDTLS_ERROR_STRINGS", + "name": "MBEDTLS_ERROR_STRINGS", + "range": null, + "title": "Enable error code to error string conversion", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", + "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF.\n\nThis configuration option saves flash footprint in the application binary.\nNote that the version of mbedtls crypto algorithm library in ROM(ECO1~ECO3) is v2.16.12,\nand the version of mbedtls crypto algorithm library in ROM(ECO4) is v3.6.0.\nWe have done the security analysis of the mbedtls revision in ROM (ECO1~ECO4)\nand ensured that affected symbols have been patched (removed). If in the future\nmbedtls revisions there are security issues that also affects the version in\nROM (ECO1~ECO4) then we shall patch the relevant symbols. This would increase\nthe flash footprint and hence care must be taken to keep some reserved space\nfor the application binary in flash layout.", + "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of the crypto algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": "(VFS_SUPPORT_IO && VFS_SUPPORT_DIR) || IDF_TARGET_LINUX", + "help": "This option enables functions in mbedTLS that use the filesystem.\nIt uses the default filesystem support for the target,\nwhich is added through vfs component for ESP32 based targets or by\nthe host system when the target is Linux.", + "id": "MBEDTLS_FS_IO", + "name": "MBEDTLS_FS_IO", + "range": null, + "title": "Enable functions that use the filesystem", + "type": "bool" + } + ], + "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 occurrence 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 occurrence 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/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "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; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-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": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "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" + }, + { + "children": [], + "depends_on": "SPIRAM && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)", + "help": "Enabling this option lets NVS library try to allocate page cache and key hash list in SPIRAM\ninstead of internal RAM. It can help applications using large nvs partitions or large number\nof keys to save heap space in internal RAM. SPIRAM heap allocation negatively impacts speed\nof NVS operations as the CPU accesses NVS cache via SPI instead of direct access to the internal RAM.", + "id": "NVS_ALLOCATE_CACHE_IN_SPIRAM", + "name": "NVS_ALLOCATE_CACHE_IN_SPIRAM", + "range": null, + "title": "Prefers allocation of in-memory cache structures in SPI connected PSRAM", + "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": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread package name.", + "id": "OPENTHREAD_PACKAGE_NAME", + "name": "OPENTHREAD_PACKAGE_NAME", + "range": null, + "title": "OpenThread package name", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread platform information.", + "id": "OPENTHREAD_PLATFORM_INFO", + "name": "OPENTHREAD_PLATFORM_INFO", + "range": null, + "title": "platform information", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-version-message", + "title": "Thread Version Message", + "type": "menu" + }, + { + "children": [ + { + "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-thread-console-openthread-console-type", + "name": "OPENTHREAD_CONSOLE_TYPE", + "title": "OpenThread console type", + "type": "choice" + }, + { + "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" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-console", + "title": "Thread Console", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_NAME", + "name": "OPENTHREAD_NETWORK_NAME", + "range": null, + "title": "OpenThread network name", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "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": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_CHANNEL", + "name": "OPENTHREAD_NETWORK_CHANNEL", + "range": null, + "title": "OpenThread network channel", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_PANID", + "name": "OPENTHREAD_NETWORK_PANID", + "range": null, + "title": "OpenThread network pan id", + "type": "hex" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "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": "OPENTHREAD_ENABLED", + "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": "OPENTHREAD_ENABLED", + "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": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-operational-dataset", + "title": "Thread Operational Dataset", + "type": "menu" + }, + { + "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-openthread-thread-core-features-thread-device-type", + "name": "OPENTHREAD_DEVICE_TYPE", + "title": "Thread device type", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "help": "Configure the port number of TREL service.", + "id": "OPENTHREAD_TREL_PORT", + "name": "OPENTHREAD_TREL_PORT", + "range": null, + "title": "The port of openthread trel service", + "type": "int" + } + ], + "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "help": "Select this option to enable Thread Radio Encapsulation Link.", + "id": "OPENTHREAD_RADIO_TREL", + "name": "OPENTHREAD_RADIO_TREL", + "range": null, + "title": "Enable Thread Radio Encapsulation Link (TREL)", + "type": "bool" + } + ], + "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-trel-radio-link", + "title": "Thread Trel Radio Link", + "type": "menu" + }, + { + "children": [ + { + "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" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to disable the Thread radio based on 15.4 link.", + "id": "OPENTHREAD_RADIO_154_NONE", + "name": "OPENTHREAD_RADIO_154_NONE", + "range": null, + "title": "Disable the Thread radio based on 15.4 link", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Configure how OpenThread connects to the 15.4 radio", + "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-config-the-thread-radio-type-with-15-4-link", + "name": "OPENTHREAD_RADIO_TYPE", + "title": "Config the Thread radio type with 15.4 link", + "type": "choice" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link", + "title": "Thread 15.4 Radio Link", + "type": "menu" + }, + { + "children": [ + { + "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 && OPENTHREAD_ENABLED", + "help": null, + "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-the-rcp-transport-type", + "name": "OPENTHREAD_RCP_TRANSPORT", + "title": "The RCP transport type", + "type": "choice" + }, + { + "children": [], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "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" + } + ], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature", + "title": "Thread Radio Co-Processor Feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "OPENTHREAD_FTD && 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": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", + "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_COMMISSIONER && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-commissioner-commissioner-configurations", + "title": "Commissioner Configurations", + "type": "menu" + } + ], + "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\nwith the Thread commissioning protocol and shares the network parameter with the joining device\nupon 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\nThread network with a pre-shared key using the Thread commissioning protocol.", + "id": "OPENTHREAD_JOINER", + "name": "OPENTHREAD_JOINER", + "range": null, + "title": "Enable Joiner", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", + "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_SRP_CLIENT && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-srp-client-srp-client-configurations", + "title": "SRP Client Configurations", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable SRP Client in OpenThread.\nThis allows a device to register SRP services to SRP Server.", + "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": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", + "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_DNS64_CLIENT && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-dns64-client-dns64-client-configurations", + "title": "DNS64 Client Configurations", + "type": "menu" + } + ], + "depends_on": "LWIP_IPV4 && OPENTHREAD_ENABLED", + "help": "Select this option to acquire NAT64 address from dns servers.", + "id": "OPENTHREAD_DNS64_CLIENT", + "name": "OPENTHREAD_DNS64_CLIENT", + "range": null, + "title": "Enable DNS64 Client", + "type": "bool" + }, + { + "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": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", + "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 && OPENTHREAD_ENABLED", + "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 && OPENTHREAD_ENABLED", + "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" + } + ], + "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-csl-feature-csl-configurations", + "title": "CSL Configurations", + "type": "menu" + } + ], + "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": "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) && OPENTHREAD_ENABLED", + "help": "Select this option to enable the radio statistics feature, you can use radio\ncommand to print some radio Statistics information.", + "id": "OPENTHREAD_RADIO_STATS_ENABLE", + "name": "OPENTHREAD_RADIO_STATS_ENABLE", + "range": null, + "title": "Enable Radio Statistics feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable OpenThread radio capability rx on when idle.\nDo not support this feature when SW 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": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag\ncommands in the OpenThread command line. These commands allow users to manipulate low-level\nfeatures of the storage and 15.4 radio.", + "id": "OPENTHREAD_DIAG", + "name": "OPENTHREAD_DIAG", + "range": null, + "title": "Enable diag", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "help": "Select this option to allocate buffer from PSRAM for Thread", + "id": "OPENTHREAD_MEM_ALLOC_EXTERNAL", + "name": "OPENTHREAD_MEM_ALLOC_EXTERNAL", + "range": null, + "title": "Allocate memory from PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "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" + } + ], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-memory-allocation", + "title": "Thread Memory Allocation", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "name": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "range": null, + "title": "Timeout (in seconds) for a address notification response after sending an address query.", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "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) && OPENTHREAD_ENABLED", + "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": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-thread-address-query-config", + "title": "Thread Address Query Config", + "type": "menu" + }, + { + "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", + "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_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": [], + "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": "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" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters", + "title": "OpenThread Stack Parameters", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features", + "title": "Thread Core Features", + "type": "menu" + }, + { + "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": "", + "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_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", + "help": "Select OpenThread log level.", + "id": "component-config-openthread-openthread-thread-log-openthread-log-verbosity", + "name": "OPENTHREAD_LOG_LEVEL", + "title": "OpenThread log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL", + "name": "OPENTHREAD_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-log", + "title": "Thread Log", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "help": "Please use relative paths with respect to the project folder.", + "id": "OPENTHREAD_CUSTOM_HEADER_PATH", + "name": "OPENTHREAD_CUSTOM_HEADER_PATH", + "range": null, + "title": "Path of custom header file", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "help": "Name of custom header file.", + "id": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", + "name": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", + "range": null, + "title": "Name of custom header file", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-extensioned-features-use-a-header-file-defined-by-customer-openthread-custom-header-config", + "title": "OpenThread Custom Header Config", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "This option allows users to tailor the values of openthread macros according to their requirements.\nThe openthread submodule contains numerous macros, each with a default value set. In the Kconfig of\nESP openthread, users can set specific openthread parameters, which will be applied for certain\nopenthread macros in the openthread-core-esp32x-xxx-config.h file. During compilation, the values\nspecified in openthread-core-esp32x-xxx-config.h will replace the default settings in the openthread\nsubmodule. However, Kconfig does not cover all openthread macros, particularly those typically\nusing default values. For such macros, users can enable the OPENTHREAD_HEADER_CUSTOM option in the\nKconfig and provide a custom header file. Macros defined in the custom header file will have the\nhighest priority.", + "id": "OPENTHREAD_HEADER_CUSTOM", + "name": "OPENTHREAD_HEADER_CUSTOM", + "range": null, + "title": "Use a header file defined by customer", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-extensioned-features", + "title": "Thread Extensioned Features", + "type": "menu" + } + ], + "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": "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": "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_SPINEL_ONLY", + "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", + "id": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "name": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "range": null, + "title": "Maximum backoffs times before declaring a channel access failure.", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-openthread-openthread-spinel", + "title": "OpenThread Spinel", + "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": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32S3 && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + } + ], + "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 documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORTED", + "name": "SPI_FLASH_VENDOR_XMC_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 messages 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 messages 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 messages 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 messages 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 messages\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": "Turn on this setting to enabled interrupts on the ULP RISC-V core.", + "id": "ULP_RISCV_INTERRUPT_ENABLE", + "name": "ULP_RISCV_INTERRUPT_ENABLE", + "range": null, + "title": "Enable ULP RISC-V interrupts", + "type": "bool" + }, + { + "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" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && ESP_ROM_HAS_LP_ROM && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to enable printf functionality from LP ROM. This option\ncan help reduce the LP core binary size by not linking printf functionality\nfrom RAM code.\nNote: For LP ROM prints to work properly, make sure that the LP core boots\nfrom the LP ROM.", + "id": "ULP_ROM_PRINT_ENABLE", + "name": "ULP_ROM_PRINT_ENABLE", + "range": null, + "title": "Enable print utilities from LP ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && SOC_ULP_LP_UART_SUPPORTED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to enable panic handler functionality. If this option is\nenabled then the LP Core will output a panic dump over LP UART,\nsimilar to what the main core does. Output depends on LP UART already being\ninitialized and configured.\nDisabling this option will reduce the LP core binary size by not\nlinking in panic handler functionality.", + "id": "ULP_PANIC_OUTPUT_ENABLE", + "name": "ULP_PANIC_OUTPUT_ENABLE", + "range": null, + "title": "Enable panic handler which outputs over LP UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to route lp_core_printf to the console HP-UART.\nThis allows you to easily view print outputs from the LP core, without\nhaving to connect to the LP-UART. This option comes with the following\nlimitations:\n\n1. There is no mutual exclusion between the HP-Core and the LP-Core accessing\nthe HP-UART, which means that if both cores are logging heavily the output\nstrings might get mangled together.\n2. The HP-UART can only work while the HP-Core is running, which means that\nif the HP-Core is in deep sleep, the LP-Core will not be able to print to the\nconsole HP-UART.\n\nDue to these limitations it is only recommended to use this option for easy debugging.\nFor more serious use-cases you should use the LP-UART.", + "id": "ULP_HP_UART_CONSOLE_PRINT", + "name": "ULP_HP_UART_CONSOLE_PRINT", + "range": null, + "title": "Route lp_core_printf to the console HP-UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Enable this feature to avoid resetting LP core in sleep mode when debugger is attached,\notherwise configured HW breakpoints and dcsr.ebreak* bits will be missed.\nThis is a workaround until it will be fixed in HW.", + "id": "ULP_NORESET_UNDER_DEBUG", + "name": "ULP_NORESET_UNDER_DEBUG", + "range": null, + "title": "Avoid resetting LP core when debugger is attached", + "type": "bool" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "id": "component-config-ultra-low-power-ulp-co-processor-ulp-debugging-options", + "title": "ULP Debugging Options", + "type": "menu" + } + ], + "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": [ + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "On connection of a USB device, the USB 2.0 specification requires\na \"debounce interval with a minimum duration of 100ms\" to allow the connection to stabilize\n(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\nthe USB System Software. The USB 2.0 specification requires that \"the reset signaling must\nbe driven for a minimum of 10ms\" (see USB 2.0 chapter 7.1.7.5 for more details).\nAfter the reset, the hub port will transition to the 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\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data 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()\nrecovery interval of 2 ms. At the end of this interval, the device must be able to accept\nSetup packets addressed to the new address. Also, at the end of the recovery interval, the\ndevice must not respond to tokens sent to the old address (unless, of course, the old and new\naddress is the same).\" See USB 2.0 chapter 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-hub-driver-configuration-root-port-configuration", + "title": "Root Port configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Enables support for connecting multiple Hubs simultaneously.", + "id": "USB_HOST_HUB_MULTI_LEVEL", + "name": "USB_HOST_HUB_MULTI_LEVEL", + "range": null, + "title": "Support multiple Hubs", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Enables support of Low-speed devices, connected through the external Hub.", + "id": "USB_HOST_EXT_PORT_SUPPORT_LS", + "name": "USB_HOST_EXT_PORT_SUPPORT_LS", + "range": null, + "title": "Support LS", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Amount of attempts to reset the device.\n\nThe default value is 1.", + "id": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "name": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", + "name": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", + "range": null, + "title": "Reset recovery delay in ms", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Custom value of delay from the time the power-on sequence begins on a port\nuntil power is good on that port.\nValue 0 is used for a hub with no power switches.\n\nThe default value is 100 ms.", + "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", + "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", + "range": null, + "title": "PwrOn2PwrGood delay in ms", + "type": "int" + } + ], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Enables the possibility to configure custom time for the power-on sequence on a port\nuntil power is good on that port.\n\nWhen enabled, applies the custom PwrOn2PwrGood delay.\nWhen disabled, applies the PwrOn2PwrGood value from the Hub Descriptor.", + "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", + "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", + "range": null, + "title": "Custom bPwrOn2PwrGood value", + "type": "bool" + } + ], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-hub-driver-configuration-support-hubs-downstream-port-configuration", + "title": "Downstream Port configuration", + "type": "menu" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "Enables support of external Hubs.", + "id": "USB_HOST_HUBS_SUPPORTED", + "name": "USB_HOST_HUBS_SUPPORTED", + "range": null, + "title": "Support Hubs", + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-hub-driver-configuration", + "title": "Hub Driver Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The enumeration filter callback is called before enumeration of each newly attached device.\nThis callback allows users to control whether a device should be enumerated, and what configuration\nnumber to use when enumerating 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" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": null, + "id": "USB_OTG_SUPPORTED", + "name": "USB_OTG_SUPPORTED", + "range": null, + "title": null, + "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 inconveniently 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" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "If enabled, /dev/null VFS will be automatically initialized at startup.", + "id": "VFS_INITIALIZE_DEV_NULL", + "name": "VFS_INITIALIZE_DEV_NULL", + "range": null, + "title": "Initialize /dev/null VFS", + "type": "bool" + } + ], + "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": "Performance", + "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": "BT_ENABLED", + "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": [], + "depends_on": "BT_ENABLED", + "help": "Used to enable support Notification in BLE descriptors of prov* characteristics", + "id": "WIFI_PROV_BLE_NOTIFY", + "name": "WIFI_PROV_BLE_NOTIFY", + "range": null, + "title": "Add support for Notification for provisioning BLE descriptors", + "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" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_SUPPORT_LS\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "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/JoystickControlServo/build/config/sdkconfig.cmake b/JoystickControlServo/build/config/sdkconfig.cmake new file mode 100644 index 0000000..7f11813 --- /dev/null +++ b/JoystickControlServo/build/config/sdkconfig.cmake @@ -0,0 +1,1506 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_ETM_SUPPORTED "y") +set(CONFIG_SOC_PARLIO_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_IEEE802154_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_LP_CORE_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_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_SYSTIMER_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_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_ECC_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_APM_SUPPORTED "y") +set(CONFIG_SOC_PMU_SUPPORTED "y") +set(CONFIG_SOC_PAU_SUPPORTED "y") +set(CONFIG_SOC_LP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_LP_AON_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPHERALS_SUPPORTED "y") +set(CONFIG_SOC_LP_I2C_SUPPORTED "y") +set(CONFIG_SOC_ULP_LP_UART_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_MODEM_CLOCK_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "1") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "7") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED "y") +set(CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CPU_CORES_NUM "1") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") +set(CONFIG_SOC_INT_PLIC_SUPPORTED "y") +set(CONFIG_SOC_CPU_HAS_CSR_PC "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "4") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "4") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") +set(CONFIG_SOC_CPU_HAS_PMA "y") +set(CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP "y") +set(CONFIG_SOC_CPU_PMP_REGION_GRANULARITY "4") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") +set(CONFIG_SOC_GDMA_SUPPORT_ETM "y") +set(CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_ETM_GROUPS "1") +set(CONFIG_SOC_ETM_CHANNELS_PER_GROUP "50") +set(CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "31") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM "8") +set(CONFIG_SOC_GPIO_SUPPORT_ETM "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP "y") +set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "30") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "30") +set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK "0") +set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT "8") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x7fffff00") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") +set(CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_RTCIO_PIN_COUNT "8") +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_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "1") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH "y") +set(CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_LP_I2C_NUM "1") +set(CONFIG_SOC_LP_I2C_FIFO_LEN "16") +set(CONFIG_SOC_I2S_NUM "1") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_ETM "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED "y") +set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX "16") +set(CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH "10") +set(CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE "y") +set(CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED "y") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_DI_VADDR_SHARED "y") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE "y") +set(CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MCPWM_GROUPS "1") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MCPWM_SUPPORT_ETM "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP "y") +set(CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_PARLIO_GROUPS "1") +set(CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP "1") +set(CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP "1") +set(CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH "16") +set(CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH "16") +set(CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") +set(CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M "y") +set(CONFIG_SOC_SDM_CLK_SUPPORT_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_SYSTIMER_SUPPORT_ETM "y") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") +set(CONFIG_SOC_TIMER_SUPPORT_ETM "y") +set(CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") +set(CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "2") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "32768") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_SECURE_BOOT_V2_ECC "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED "y") +set(CONFIG_SOC_APM_LP_APM0_SUPPORTED "y") +set(CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "2") +set(CONFIG_SOC_UART_LP_NUM "1") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_LP_UART_FIFO_LEN "16") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_HAS_LP_UART "y") +set(CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_ADVANCE "y") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_XTAL32K_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC32K_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TOP_PD "y") +set(CONFIG_SOC_PM_SUPPORT_HP_AON_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_SW "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA "y") +set(CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG "y") +set(CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN "y") +set(CONFIG_SOC_PM_PAU_LINK_NUM "4") +set(CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR "y") +set(CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC "y") +set(CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE "y") +set(CONFIG_SOC_PM_RETENTION_MODULE_NUM "32") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED "y") +set(CONFIG_SOC_CLK_RC32K_SUPPORTED "y") +set(CONFIG_SOC_RCC_IS_INDEPENDENT "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION "y") +set(CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN "y") +set(CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_HE_SUPPORT "y") +set(CONFIG_SOC_WIFI_MAC_VERSION_NUM "2") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_ESP_NIMBLE_CONTROLLER "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED "y") +set(CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") +set(CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD "y") +set(CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR "y") +set(CONFIG_SOC_LP_CORE_SUPPORT_ETM "y") +set(CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_RISCV "y") +set(CONFIG_IDF_TARGET_ARCH "riscv") +set(CONFIG_IDF_TARGET "esp32c6") +set(CONFIG_IDF_INIT_VERSION "5.4.0") +set(CONFIG_IDF_TARGET_ESP32C6 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0xd") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "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_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_RVFPLIB "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_HAS_HAL_SYSTIMER "y") +set(CONFIG_ESP_ROM_HAS_HEAP_TLSF "y") +set(CONFIG_ESP_ROM_TLSF_CHECK_PATCH "y") +set(CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_REGI2C_BUG "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT "y") +set(CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE "y") +set(CONFIG_ESP_ROM_WDT_INIT_PATCH "y") +set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_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 "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_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_CONSOLE_SORTED_HELP "") +set(CONFIG_TWAI_ISR_IN_IRAM "") +set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_MAX_BLK_LEN "256") +set(CONFIG_ESP_TLS_USING_MBEDTLS "y") +set(CONFIG_ESP_TLS_USE_DS_PERIPHERAL "y") +set(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK "") +set(CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL "") +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_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_COEX_ENABLED "y") +set(CONFIG_ESP_COEX_SW_COEXIST_ENABLE "y") +set(CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE "") +set(CONFIG_ESP_COEX_POWER_MANAGEMENT "") +set(CONFIG_ESP_COEX_GPIO_DEBUG "") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") +set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_ISR_IRAM_SAFE "") +set(CONFIG_I2C_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 "") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_ISR_IRAM_SAFE "") +set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") +set(CONFIG_PARLIO_ENABLE_DEBUG_LOG "") +set(CONFIG_PARLIO_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_PCNT_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ISR_IRAM_SAFE "") +set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") +set(CONFIG_RMT_ENABLE_DEBUG_LOG "") +set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_ENABLE_DEBUG_LOG "") +set(CONFIG_SPI_MASTER_IN_IRAM "") +set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") +set(CONFIG_SPI_SLAVE_IN_IRAM "") +set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") +set(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG "") +set(CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE "") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_USJ_ENABLE_USB_SERIAL_JTAG "y") +set(CONFIG_ETH_ENABLED "y") +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_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT "") +set(CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT "2000") +set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "512") +set(CONFIG_HTTPD_MAX_URI_LEN "512") +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_HTTPD_SERVER_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_OTA_DECRYPT_CB "") +set(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_SERVER_ENABLE "") +set(CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP32C6_REV_MIN_0 "y") +set(CONFIG_ESP32C6_REV_MIN_1 "") +set(CONFIG_ESP32C6_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32C6_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") +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_ADDR_UNIVERSE_IEEE802154 "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") +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_USE_DANGEROUS_RC32K_ALLOWED "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ETM_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM "y") +set(CONFIG_LCD_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") +set(CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION "") +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_REPORT_DATA_TRAFFIC "y") +set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "") +set(CONFIG_ESP_NETIF_L2_TAP "") +set(CONFIG_ESP_NETIF_BRIDGE_EN "") +set(CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF "") +set(CONFIG_ESP_PHY_ENABLED "y") +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_ENABLE_CERT_TEST "") +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_ESP_PHY_RECORD_USED_TIME "") +set(CONFIG_PM_ENABLE "") +set(CONFIG_PM_SLP_IRAM_OPT "") +set(CONFIG_PM_SLP_DEFAULT_PARAMS_OPT "y") +set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") +set(CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP "") +set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP "y") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW "y") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM "") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH "") +set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL "1") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_120 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +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_SINGLE_CORE_MODE "y") +set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") +set(CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT "y") +set(CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE "") +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_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_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_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_TIMER_PROFILING "") +set(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER "y") +set(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER "y") +set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_TIMER_INTERRUPT_LEVEL "1") +set(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL "") +set(CONFIG_ESP_TIMER_TASK_AFFINITY "0x0") +set(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") +set(CONFIG_ESP_TIMER_IMPL_SYSTIMER "y") +set(CONFIG_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_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 "y") +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 "y") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME "50") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME "10") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME "15") +set(CONFIG_ESP_WIFI_FTM_ENABLE "") +set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") +set(CONFIG_ESP_WIFI_GCMP_SUPPORT "") +set(CONFIG_ESP_WIFI_GMAC_SUPPORT "y") +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_MBEDTLS_CRYPTO "y") +set(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_ESP_WIFI_WAPI_PSK "") +set(CONFIG_ESP_WIFI_SUITE_B_192 "") +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_ENABLE_WIFI_TX_STATS "") +set(CONFIG_ESP_WIFI_ENABLE_WIFI_RX_STATS "") +set(CONFIG_ESP_WIFI_TX_HETB_QUEUE_NUM "3") +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_USE_STRFUNC_NONE "y") +set(CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV "") +set(CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV "") +set(CONFIG_FATFS_VFS_FSTAT_BLKSIZE "0") +set(CONFIG_FATFS_IMMEDIATE_FSYNC "") +set(CONFIG_FATFS_USE_LABEL "") +set(CONFIG_FATFS_LINK_LOCK "y") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "y") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") +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_SYSTIMER_USE_ROM_IMPL "y") +set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") +set(CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM "y") +set(CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM "y") +set(CONFIG_HAL_ECDSA_GEN_SIG_CM "") +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_TLSF_USE_ROM_IMPL "y") +set(CONFIG_IEEE802154_ENABLED "y") +set(CONFIG_IEEE802154_RX_BUFFER_SIZE "20") +set(CONFIG_IEEE802154_CCA_CARRIER "") +set(CONFIG_IEEE802154_CCA_ED "y") +set(CONFIG_IEEE802154_CCA_CARRIER_OR_ED "") +set(CONFIG_IEEE802154_CCA_CARRIER_AND_ED "") +set(CONFIG_IEEE802154_CCA_MODE "1") +set(CONFIG_IEEE802154_CCA_THRESHOLD "-60") +set(CONFIG_IEEE802154_PENDING_TABLE_SIZE "20") +set(CONFIG_IEEE802154_MULTI_PAN_ENABLE "") +set(CONFIG_IEEE802154_TIMING_OPTIMIZATION "") +set(CONFIG_IEEE802154_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_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_DOES_ACD_CHECK "") +set(CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP "") +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_DHCPS_ADD_DNS "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_ACCEPTMBOX_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 "0x7fffffff") +set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") +set(CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES "5") +set(CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS "10") +set(CONFIG_LWIP_PPP_SUPPORT "") +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_SNTP_STARTUP_DELAY "y") +set(CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY "5000") +set(CONFIG_LWIP_DNS_MAX_HOST_IP "1") +set(CONFIG_LWIP_DNS_MAX_SERVERS "3") +set(CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT "") +set(CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF "") +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_DNS_EXT_RESOLVE_NONE "y") +set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_NONE "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "y") +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_DEPRECATED_LIST "") +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_AES_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "y") +set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_HARDWARE_SHA "y") +set(CONFIG_MBEDTLS_HARDWARE_ECC "y") +set(CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK "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_SHA3_C "") +set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") +set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") +set(CONFIG_MBEDTLS_TLS_DISABLED "") +set(CONFIG_MBEDTLS_TLS_SERVER "y") +set(CONFIG_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_ENABLED "y") +set(CONFIG_MBEDTLS_PSK_MODES "") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") +set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") +set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") +set(CONFIG_MBEDTLS_SSL_ALPN "y") +set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_AES_C "y") +set(CONFIG_MBEDTLS_CAMELLIA_C "") +set(CONFIG_MBEDTLS_DES_C "") +set(CONFIG_MBEDTLS_BLOWFISH_C "") +set(CONFIG_MBEDTLS_XTEA_C "") +set(CONFIG_MBEDTLS_CCM_C "y") +set(CONFIG_MBEDTLS_GCM_C "y") +set(CONFIG_MBEDTLS_NIST_KW_C "") +set(CONFIG_MBEDTLS_RIPEMD160_C "") +set(CONFIG_MBEDTLS_PEM_PARSE_C "y") +set(CONFIG_MBEDTLS_PEM_WRITE_C "y") +set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") +set(CONFIG_MBEDTLS_ECP_C "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") +set(CONFIG_MBEDTLS_DHM_C "") +set(CONFIG_MBEDTLS_ECDH_C "y") +set(CONFIG_MBEDTLS_ECDSA_C "y") +set(CONFIG_MBEDTLS_ECJPAKE_C "") +set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") +set(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM "") +set(CONFIG_MBEDTLS_POLY1305_C "") +set(CONFIG_MBEDTLS_CHACHA20_C "") +set(CONFIG_MBEDTLS_HKDF_C "") +set(CONFIG_MBEDTLS_THREADING_C "") +set(CONFIG_MBEDTLS_ERROR_STRINGS "y") +set(CONFIG_MBEDTLS_FS_IO "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_ENCRYPTION "") +set(CONFIG_NVS_ASSERT_ERROR_CHECK "") +set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") +set(CONFIG_OPENTHREAD_ENABLED "") +set(CONFIG_OPENTHREAD_SPINEL_ONLY "") +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_TASK_CORE_DEFAULT "-1") +set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_MMU_PAGE_SIZE_32KB "y") +set(CONFIG_MMU_PAGE_MODE "32KB") +set(CONFIG_MMU_PAGE_SIZE "0x8000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "") +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_VFS_INITIALIZE_DEV_NULL "y") +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_STA_ALL_CHANNEL_SCAN "y") +set(CONFIG_WIFI_PROV_STA_FAST_SCAN "") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_ETM_SUPPORTED;CONFIG_SOC_PARLIO_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_IEEE802154_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_LP_CORE_SUPPORTED;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_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_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_ECC_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_APM_SUPPORTED;CONFIG_SOC_PMU_SUPPORTED;CONFIG_SOC_PAU_SUPPORTED;CONFIG_SOC_LP_TIMER_SUPPORTED;CONFIG_SOC_LP_AON_SUPPORTED;CONFIG_SOC_LP_PERIPHERALS_SUPPORTED;CONFIG_SOC_LP_I2C_SUPPORTED;CONFIG_SOC_ULP_LP_UART_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_MODEM_CLOCK_SUPPORTED;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED;CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_INT_PLIC_SUPPORTED;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_CPU_HAS_PMA;CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP;CONFIG_SOC_CPU_PMP_REGION_GRANULARITY;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GDMA_SUPPORT_ETM;CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_ETM_GROUPS;CONFIG_SOC_ETM_CHANNELS_PER_GROUP;CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM;CONFIG_SOC_GPIO_SUPPORT_ETM;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH;CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LP_I2C_NUM;CONFIG_SOC_LP_I2C_FIFO_LEN;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_ETM;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX;CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE;CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_DI_VADDR_SHARED;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_PCNT_SUPPORT_RUNTIME_THRES_UPDATE;CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MCPWM_SUPPORT_ETM;CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP;CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_GROUPS;CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT;CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M;CONFIG_SOC_SDM_CLK_SUPPORT_XTAL;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M;CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_SYSTIMER_SUPPORT_ETM;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_SUPPORT_ETM;CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_SECURE_BOOT_V2_ECC;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED;CONFIG_SOC_APM_LP_APM0_SUPPORTED;CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_LP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_LP_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_HAS_LP_UART;CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_ADVANCE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_PM_SUPPORT_XTAL32K_PD;CONFIG_SOC_PM_SUPPORT_RC32K_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_TOP_PD;CONFIG_SOC_PM_SUPPORT_HP_AON_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_SW;CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA;CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG;CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN;CONFIG_SOC_PM_PAU_LINK_NUM;CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR;CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC;CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE;CONFIG_SOC_PM_RETENTION_MODULE_NUM;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED;CONFIG_SOC_CLK_RC32K_SUPPORTED;CONFIG_SOC_RCC_IS_INDEPENDENT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN;CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_HE_SUPPORT;CONFIG_SOC_WIFI_MAC_VERSION_NUM;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_ESP_NIMBLE_CONTROLLER;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED;CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD;CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR;CONFIG_SOC_LP_CORE_SUPPORT_ETM;CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32C6;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;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_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_RVFPLIB;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_HAS_HAL_SYSTIMER;CONFIG_ESP_ROM_HAS_HEAP_TLSF;CONFIG_ESP_ROM_TLSF_CHECK_PATCH;CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_REGI2C_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT;CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE;CONFIG_ESP_ROM_WDT_INIT_PATCH;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_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_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_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_CONSOLE_SORTED_HELP;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_DS_PERIPHERAL;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK;CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_ENABLE_DEBUG_LOG;CONFIG_ESP_COEX_ENABLED;CONFIG_ESP_COEX_SW_COEXIST_ENABLE;CONFIG_SW_COEXIST_ENABLE;CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE;CONFIG_ESP_WIFI_SW_COEXIST_ENABLE;CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE;CONFIG_EXTERNAL_COEX_ENABLE;CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE;CONFIG_ESP_COEX_POWER_MANAGEMENT;CONFIG_ESP_COEX_GPIO_DEBUG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_ISR_IN_IRAM;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_PARLIO_ENABLE_DEBUG_LOG;CONFIG_PARLIO_ISR_IRAM_SAFE;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE;CONFIG_UART_ISR_IN_IRAM;CONFIG_USJ_ENABLE_USB_SERIAL_JTAG;CONFIG_ETH_ENABLED;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_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT;CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT;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_HTTPD_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP32C6_REV_MIN_0;CONFIG_ESP32C6_REV_MIN_1;CONFIG_ESP32C6_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32C6_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_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_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ETM_ENABLE_DEBUG_LOG;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF;CONFIG_ESP_PHY_ENABLED;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_ENABLE_CERT_TEST;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_ESP_PHY_RECORD_USED_TIME;CONFIG_PM_ENABLE;CONFIG_PM_SLP_IRAM_OPT;CONFIG_PM_SLP_DEFAULT_PARAMS_OPT;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_120;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT;CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE;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_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_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_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL;CONFIG_ESP_TIMER_TASK_AFFINITY;CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_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_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_SLP_DEFAULT_MIN_ACTIVE_TIME;CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME;CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME;CONFIG_ESP_WIFI_FTM_ENABLE;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_GCMP_SUPPORT;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_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_SUITE_B_192;CONFIG_WPA_SUITE_B_192;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_ENABLE_WIFI_TX_STATS;CONFIG_ESP_WIFI_ENABLE_WIFI_RX_STATS;CONFIG_ESP_WIFI_TX_HETB_QUEUE_NUM;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_USE_STRFUNC_NONE;CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV;CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV;CONFIG_FATFS_VFS_FSTAT_BLKSIZE;CONFIG_FATFS_IMMEDIATE_FSYNC;CONFIG_FATFS_USE_LABEL;CONFIG_FATFS_LINK_LOCK;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_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_SYSTIMER_USE_ROM_IMPL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM;CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM;CONFIG_HAL_ECDSA_GEN_SIG_CM;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_TLSF_USE_ROM_IMPL;CONFIG_IEEE802154_ENABLED;CONFIG_IEEE802154_RX_BUFFER_SIZE;CONFIG_IEEE802154_CCA_CARRIER;CONFIG_IEEE802154_CCA_ED;CONFIG_IEEE802154_CCA_CARRIER_OR_ED;CONFIG_IEEE802154_CCA_CARRIER_AND_ED;CONFIG_IEEE802154_CCA_MODE;CONFIG_IEEE802154_CCA_THRESHOLD;CONFIG_IEEE802154_PENDING_TABLE_SIZE;CONFIG_IEEE802154_MULTI_PAN_ENABLE;CONFIG_IEEE802154_TIMING_OPTIMIZATION;CONFIG_IEEE802154_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_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_DOES_ACD_CHECK;CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP;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_DHCPS_ADD_DNS;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_ACCEPTMBOX_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;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES;CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS;CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;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_SNTP_STARTUP_DELAY;CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY;CONFIG_LWIP_DNS_MAX_HOST_IP;CONFIG_LWIP_DNS_MAX_SERVERS;CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT;CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF;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_DNS_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_DNS_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_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HARDWARE_ECC;CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK;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_SHA3_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_FS_IO;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_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ENCRYPTION;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_SPINEL_ONLY;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_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_32KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_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_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_VFS_INITIALIZE_DEV_NULL;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_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +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_SW_COEXIST_ENABLE "y") +set(CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE "y") +set(CONFIG_ESP_WIFI_SW_COEXIST_ENABLE "y") +set(CONFIG_EXTERNAL_COEX_ENABLE "") +set(CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE "") +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_ESP_SYSTEM_PD_FLASH "") +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_ESP_SYSTEM_PM_POWER_DOWN_CPU "y") +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_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_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +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_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_SUITE_B_192 "") +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 "0x7fffffff") +set(CONFIG_PPP_SUPPORT "") +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_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_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_SUPPORT_TERMIOS "y") +set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") diff --git a/JoystickControlServo/build/config/sdkconfig.h b/JoystickControlServo/build/config/sdkconfig.h new file mode 100644 index 0000000..32feb27 --- /dev/null +++ b/JoystickControlServo/build/config/sdkconfig.h @@ -0,0 +1,1000 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.4.0 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_ETM_SUPPORTED 1 +#define CONFIG_SOC_PARLIO_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_IEEE802154_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_LP_CORE_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_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_SYSTIMER_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_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_ECC_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_APM_SUPPORTED 1 +#define CONFIG_SOC_PMU_SUPPORTED 1 +#define CONFIG_SOC_PAU_SUPPORTED 1 +#define CONFIG_SOC_LP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_LP_AON_SUPPORTED 1 +#define CONFIG_SOC_LP_PERIPHERALS_SUPPORTED 1 +#define CONFIG_SOC_LP_I2C_SUPPORTED 1 +#define CONFIG_SOC_ULP_LP_UART_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_RNG_SUPPORTED 1 +#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_MODEM_CLOCK_SUPPORTED 1 +#define CONFIG_SOC_PM_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_AES_SUPPORT_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 +#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 1 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 7 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED 1 +#define CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CPU_CORES_NUM 1 +#define CONFIG_SOC_CPU_INTR_NUM 32 +#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 +#define CONFIG_SOC_INT_PLIC_SUPPORTED 1 +#define CONFIG_SOC_CPU_HAS_CSR_PC 1 +#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 4 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 4 +#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 +#define CONFIG_SOC_CPU_HAS_PMA 1 +#define CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP 1 +#define CONFIG_SOC_CPU_PMP_REGION_GRANULARITY 4 +#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 +#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 +#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 +#define CONFIG_SOC_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 +#define CONFIG_SOC_GDMA_SUPPORT_ETM 1 +#define CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_ETM_GROUPS 1 +#define CONFIG_SOC_ETM_CHANNELS_PER_GROUP 50 +#define CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 31 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM 8 +#define CONFIG_SOC_GPIO_SUPPORT_ETM 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP 1 +#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 30 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 30 +#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK 0 +#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT 8 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x000000007FFFFF00 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 +#define CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_RTCIO_PIN_COUNT 8 +#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_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 1 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH 1 +#define CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_LP_I2C_NUM 1 +#define CONFIG_SOC_LP_I2C_FIFO_LEN 16 +#define CONFIG_SOC_I2S_NUM 1 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_ETM 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED 1 +#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX 16 +#define CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH 10 +#define CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE 1 +#define CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_DI_VADDR_SHARED 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE 1 +#define CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MCPWM_GROUPS 1 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MCPWM_SUPPORT_ETM 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP 1 +#define CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_PARLIO_GROUPS 1 +#define CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP 1 +#define CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP 1 +#define CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH 16 +#define CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH 16 +#define CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT 1 +#define CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 +#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 +#define CONFIG_SOC_SHA_SUPPORT_DMA 1 +#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 +#define CONFIG_SOC_SHA_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 +#define CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M 1 +#define CONFIG_SOC_SDM_CLK_SUPPORT_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_SYSTIMER_SUPPORT_ETM 1 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 +#define CONFIG_SOC_TIMER_SUPPORT_ETM 1 +#define CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 +#define CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 2 +#define CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 32768 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 +#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_SECURE_BOOT_V2_ECC 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 +#define CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED 1 +#define CONFIG_SOC_APM_LP_APM0_SUPPORTED 1 +#define CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 2 +#define CONFIG_SOC_UART_LP_NUM 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_LP_UART_FIFO_LEN 16 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_HAS_LP_UART 1 +#define CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_ADVANCE 1 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 +#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_XTAL32K_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC32K_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TOP_PD 1 +#define CONFIG_SOC_PM_SUPPORT_HP_AON_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 +#define CONFIG_SOC_PM_CPU_RETENTION_BY_SW 1 +#define CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA 1 +#define CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG 1 +#define CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN 1 +#define CONFIG_SOC_PM_PAU_LINK_NUM 4 +#define CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR 1 +#define CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC 1 +#define CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE 1 +#define CONFIG_SOC_PM_RETENTION_MODULE_NUM 32 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC32K_SUPPORTED 1 +#define CONFIG_SOC_RCC_IS_INDEPENDENT 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN 1 +#define CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_WIFI_HW_TSF 1 +#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 +#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 +#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 +#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 +#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 +#define CONFIG_SOC_WIFI_HE_SUPPORT 1 +#define CONFIG_SOC_WIFI_MAC_VERSION_NUM 2 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_ESP_NIMBLE_CONTROLLER 1 +#define CONFIG_SOC_BLE_50_SUPPORTED 1 +#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 +#define CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED 1 +#define CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 +#define CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD 1 +#define CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR 1 +#define CONFIG_SOC_LP_CORE_SUPPORT_ETM 1 +#define CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_RISCV 1 +#define CONFIG_IDF_TARGET_ARCH "riscv" +#define CONFIG_IDF_TARGET "esp32c6" +#define CONFIG_IDF_INIT_VERSION "5.4.0" +#define CONFIG_IDF_TARGET_ESP32C6 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x000D +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_RVFPLIB 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_HAS_HAL_SYSTIMER 1 +#define CONFIG_ESP_ROM_HAS_HEAP_TLSF 1 +#define CONFIG_ESP_ROM_TLSF_CHECK_PATCH 1 +#define CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_REGI2C_BUG 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT 1 +#define CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE 1 +#define CONFIG_ESP_ROM_WDT_INIT_PATCH 1 +#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM -1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_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_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_TLS_USING_MBEDTLS 1 +#define CONFIG_ESP_TLS_USE_DS_PERIPHERAL 1 +#define CONFIG_ESP_COEX_ENABLED 1 +#define CONFIG_ESP_COEX_SW_COEXIST_ENABLE 1 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 +#define CONFIG_USJ_ENABLE_USB_SERIAL_JTAG 1 +#define CONFIG_ETH_ENABLED 1 +#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_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT 2000 +#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 512 +#define CONFIG_HTTPD_MAX_URI_LEN 512 +#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 +#define CONFIG_HTTPD_PURGE_BUF_LEN 32 +#define CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP32C6_REV_MIN_0 1 +#define CONFIG_ESP32C6_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32C6_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 +#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_ADDR_UNIVERSE_IEEE802154 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 +#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_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM 1 +#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_NETIF_REPORT_DATA_TRAFFIC 1 +#define CONFIG_ESP_PHY_ENABLED 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_PM_SLP_DEFAULT_PARAMS_OPT 1 +#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP 1 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW 1 +#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 +#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_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_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_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 +#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 +#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1 +#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1 +#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 +#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0 +#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1 +#define CONFIG_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_SOFTAP_BEACON_MAX_LEN 752 +#define CONFIG_ESP_WIFI_MGMT_SBUF_NUM 32 +#define CONFIG_ESP_WIFI_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_EXTRA_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_SLP_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME 50 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME 10 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME 15 +#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1 +#define CONFIG_ESP_WIFI_GMAC_SUPPORT 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_TX_HETB_QUEUE_NUM 3 +#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_USE_STRFUNC_NONE 1 +#define CONFIG_FATFS_VFS_FSTAT_BLKSIZE 0 +#define CONFIG_FATFS_LINK_LOCK 1 +#define CONFIG_FREERTOS_UNICORE 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_SYSTIMER_USE_ROM_IMPL 1 +#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 +#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_HEAP_TLSF_USE_ROM_IMPL 1 +#define CONFIG_IEEE802154_ENABLED 1 +#define CONFIG_IEEE802154_RX_BUFFER_SIZE 20 +#define CONFIG_IEEE802154_CCA_ED 1 +#define CONFIG_IEEE802154_CCA_MODE 1 +#define CONFIG_IEEE802154_CCA_THRESHOLD -60 +#define CONFIG_IEEE802154_PENDING_TABLE_SIZE 20 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_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_DHCPS_ADD_DNS 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_ACCEPTMBOX_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_IPV6_ND6_NUM_PREFIXES 5 +#define CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS 3 +#define CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS 10 +#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_SNTP_STARTUP_DELAY 1 +#define CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY 5000 +#define CONFIG_LWIP_DNS_MAX_HOST_IP 1 +#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_DNS_EXT_RESOLVE_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT 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_AES_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI 1 +#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_HARDWARE_SHA 1 +#define CONFIG_MBEDTLS_HARDWARE_ECC 1 +#define CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK 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_PK_PARSE_EC_EXTENDED 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 +#define CONFIG_MBEDTLS_ECDH_C 1 +#define CONFIG_MBEDTLS_ECDSA_C 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 +#define CONFIG_MBEDTLS_ERROR_STRINGS 1 +#define CONFIG_MBEDTLS_FS_IO 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_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_TASK_CORE_DEFAULT -1 +#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" +#define CONFIG_MMU_PAGE_SIZE_32KB 1 +#define CONFIG_MMU_PAGE_MODE "32KB" +#define CONFIG_MMU_PAGE_SIZE 0x8000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#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_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_VFS_INITIALIZE_DEV_NULL 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 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE +#define CONFIG_ESP32_APPTRACE_LOCK_ENABLE CONFIG_APPTRACE_LOCK_ENABLE +#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE CONFIG_ESP_COREDUMP_ENABLE_TO_NONE +#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_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_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE +#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_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP +#define CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_ESP_WIFI_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#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_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_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_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE +#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_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_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/JoystickControlServo/build/config/sdkconfig.json b/JoystickControlServo/build/config/sdkconfig.json new file mode 100644 index 0000000..41d2aef --- /dev/null +++ b/JoystickControlServo/build/config/sdkconfig.json @@ -0,0 +1,1347 @@ +{ + "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_ENABLE_DEBUG_LOG": false, + "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_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_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_OFFSET_IN_FLASH": 0, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "BT_ALARM_MAX_NUM": 50, + "BT_ENABLED": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": false, + "COMPILER_FLOAT_LIB_FROM_RVFPLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_SAVE_RESTORE_LIBCALLS": false, + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "CONSOLE_SORTED_HELP": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32C6_REV_MAX_FULL": 99, + "ESP32C6_REV_MIN_0": true, + "ESP32C6_REV_MIN_1": false, + "ESP32C6_REV_MIN_FULL": 0, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "80m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": true, + "ESP_COEX_ENABLED": true, + "ESP_COEX_EXTERNAL_COEXIST_ENABLE": false, + "ESP_COEX_GPIO_DEBUG": false, + "ESP_COEX_POWER_MANAGEMENT": false, + "ESP_COEX_SW_COEXIST_ENABLE": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "ESP_COREDUMP_ENABLE_TO_FLASH": false, + "ESP_COREDUMP_ENABLE_TO_NONE": true, + "ESP_COREDUMP_ENABLE_TO_UART": false, + "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": true, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL": 1, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": true, + "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, + "ESP_DEBUG_INCLUDE_OCD_STUB_BINS": false, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_120": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "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_OTA_EVENT_POST_TIMEOUT": 2000, + "ESP_HTTPS_SERVER_ENABLE": false, + "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT": 2000, + "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT": false, + "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": 2000, + "ESP_INT_WDT": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_IEEE802154": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_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_PROVIDE_CUSTOM_IMPLEMENTATION": false, + "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, + "ESP_NETIF_REPORT_DATA_TRAFFIC": true, + "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": 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_ENABLED": true, + "ESP_PHY_ENABLE_CERT_TEST": false, + "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_RECORD_USED_TIME": 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": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_HAL_SYSTIMER": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_HEAP_TLSF": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_REGI2C_BUG": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_RVFPLIB": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_MULTI_HEAP_WALK_PATCH": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_TLSF_CHECK_PATCH": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, + "ESP_ROM_WDT_INIT_PATCH": true, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, + "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, + "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_BROWNOUT_INTR": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_GDBSTUB_RUNTIME": false, + "ESP_SYSTEM_HW_PC_RECORD": true, + "ESP_SYSTEM_HW_STACK_GUARD": true, + "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_SYSTEM_PMP_IDRAM_SPLIT": true, + "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE": false, + "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "ESP_SYSTEM_SINGLE_CORE_MODE": true, + "ESP_SYSTEM_USE_EH_FRAME": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_SYSTIMER": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_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_CERT_SELECT_HOOK": false, + "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": false, + "ESP_TLS_SERVER_SESSION_TICKETS": false, + "ESP_TLS_USE_DS_PERIPHERAL": true, + "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_WIFI_RX_STATS": false, + "ESP_WIFI_ENABLE_WIFI_TX_STATS": false, + "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": true, + "ESP_WIFI_FTM_ENABLE": false, + "ESP_WIFI_GCMP_SUPPORT": false, + "ESP_WIFI_GMAC_SUPPORT": true, + "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_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_DEFAULT_MAX_ACTIVE_TIME": 10, + "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": 50, + "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": 15, + "ESP_WIFI_SLP_IRAM_OPT": true, + "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_SUITE_B_192": false, + "ESP_WIFI_TESTING_OPTIONS": false, + "ESP_WIFI_TX_BA_WIN": 6, + "ESP_WIFI_TX_BUFFER_TYPE": 1, + "ESP_WIFI_TX_HETB_QUEUE_NUM": 3, + "ESP_WIFI_WAPI_PSK": false, + "ESP_WIFI_WPS_PASSPHRASE": false, + "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, + "ESP_WIFI_WPS_STRICT": false, + "ETH_ENABLED": true, + "ETH_SPI_ETHERNET_DM9051": false, + "ETH_SPI_ETHERNET_KSZ8851SNL": false, + "ETH_SPI_ETHERNET_W5500": false, + "ETH_TRANSMIT_MUTEX": false, + "ETH_USE_OPENETH": false, + "ETH_USE_SPI_ETHERNET": true, + "ETM_ENABLE_DEBUG_LOG": false, + "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_LINK_LOCK": true, + "FATFS_PER_FILE_CACHE": true, + "FATFS_SECTOR_4096": true, + "FATFS_SECTOR_512": false, + "FATFS_TIMEOUT_MS": 10000, + "FATFS_USE_FASTSEEK": false, + "FATFS_USE_LABEL": false, + "FATFS_USE_STRFUNC_NONE": true, + "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV": false, + "FATFS_USE_STRFUNC_WITH_CRLF_CONV": 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_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "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_NUMBER_OF_CORES": 1, + "FREERTOS_OPTIMIZED_SCHEDULER": true, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": true, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_IRAM_SAFE": false, + "GPIO_CTRL_FUNC_IN_IRAM": 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_ECDSA_GEN_SIG_CM": false, + "HAL_SPI_MASTER_FUNC_IN_IRAM": true, + "HAL_SPI_SLAVE_FUNC_IN_IRAM": true, + "HAL_SYSTIMER_USE_ROM_IMPL": true, + "HAL_WDT_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, + "HEAP_TLSF_USE_ROM_IMPL": true, + "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": 512, + "HTTPD_MAX_URI_LEN": 512, + "HTTPD_PURGE_BUF_LEN": 32, + "HTTPD_QUEUE_WORK_BLOCKING": false, + "HTTPD_SERVER_EVENT_POST_TIMEOUT": 2000, + "HTTPD_WS_SUPPORT": false, + "I2C_ENABLE_DEBUG_LOG": false, + "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": 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": 13, + "IDF_INIT_VERSION": "5.4.0", + "IDF_TARGET": "esp32c6", + "IDF_TARGET_ARCH": "riscv", + "IDF_TARGET_ARCH_RISCV": true, + "IDF_TARGET_ESP32C6": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "IEEE802154_CCA_CARRIER": false, + "IEEE802154_CCA_CARRIER_AND_ED": false, + "IEEE802154_CCA_CARRIER_OR_ED": false, + "IEEE802154_CCA_ED": true, + "IEEE802154_CCA_MODE": 1, + "IEEE802154_CCA_THRESHOLD": -60, + "IEEE802154_DEBUG": false, + "IEEE802154_ENABLED": true, + "IEEE802154_MULTI_PAN_ENABLE": false, + "IEEE802154_PENDING_TABLE_SIZE": 20, + "IEEE802154_RX_BUFFER_SIZE": 20, + "IEEE802154_TIMING_OPTIMIZATION": false, + "LCD_ENABLE_DEBUG_LOG": false, + "LEDC_CTRL_FUNC_IN_IRAM": false, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "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_ADD_DNS": 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_ACD_CHECK": false, + "LWIP_DHCP_DOES_ARP_CHECK": true, + "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": false, + "LWIP_DHCP_GET_NTP_SRV": false, + "LWIP_DHCP_OPTIONS_LEN": 68, + "LWIP_DHCP_RESTORE_LAST_IP": false, + "LWIP_DNS_MAX_HOST_IP": 1, + "LWIP_DNS_MAX_SERVERS": 3, + "LWIP_DNS_SETSERVER_WITH_NETIF": false, + "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_DNS_EXT_RESOLVE_CUSTOM": false, + "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, + "LWIP_HOOK_IP6_INPUT_CUSTOM": false, + "LWIP_HOOK_IP6_INPUT_DEFAULT": true, + "LWIP_HOOK_IP6_INPUT_NONE": false, + "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_DESTINATIONS": 10, + "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, + "LWIP_IPV6_ND6_NUM_PREFIXES": 5, + "LWIP_IPV6_ND6_NUM_ROUTERS": 3, + "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_MAXIMUM_STARTUP_DELAY": 5000, + "LWIP_SNTP_MAX_SERVERS": 1, + "LWIP_SNTP_STARTUP_DELAY": true, + "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_NO_AFFINITY": true, + "LWIP_TCPIP_TASK_PRIO": 18, + "LWIP_TCPIP_TASK_STACK_SIZE": 3072, + "LWIP_TCP_ACCEPTMBOX_SIZE": 6, + "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_AES_INTERRUPT_LEVEL": 0, + "MBEDTLS_AES_USE_INTERRUPT": 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_DEPRECATED_LIST": 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_ECC_OTHER_CURVES_SOFT_FALLBACK": true, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECDSA_DETERMINISTIC": true, + "MBEDTLS_ECJPAKE_C": false, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_FS_IO": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_ECC": 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": true, + "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, + "MBEDTLS_MPI_USE_INTERRUPT": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA3_C": false, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, + "MBEDTLS_SSL_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": "32KB", + "MMU_PAGE_SIZE": 32768, + "MMU_PAGE_SIZE_32KB": 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_ENCRYPTION": false, + "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, + "OPENTHREAD_ENABLED": false, + "OPENTHREAD_SPINEL_ONLY": false, + "PARLIO_ENABLE_DEBUG_LOG": false, + "PARLIO_ISR_IRAM_SAFE": false, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "PCNT_CTRL_FUNC_IN_IRAM": false, + "PCNT_ENABLE_DEBUG_LOG": false, + "PCNT_ISR_IRAM_SAFE": false, + "PCNT_SUPPRESS_DEPRECATE_WARN": false, + "PERIPH_CTRL_FUNC_IN_IRAM": true, + "PM_ENABLE": false, + "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, + "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP": false, + "PM_SLP_DEFAULT_PARAMS_OPT": true, + "PM_SLP_IRAM_OPT": false, + "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_RC": true, + "RTC_CLK_SRC_USE_DANGEROUS_RC32K_ALLOWED": false, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": false, + "SDM_SUPPRESS_DEPRECATE_WARN": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_ECC_SUPPORTED": true, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 1, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 7, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 8, + "SOC_ADC_PERIPH_NUM": 1, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_ADC_TEMPERATURE_SHARE_INTR": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APM_CTRL_FILTER_SUPPORTED": true, + "SOC_APM_LP_APM0_SUPPORTED": true, + "SOC_APM_SUPPORTED": true, + "SOC_ASSIST_DEBUG_SUPPORTED": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED": true, + "SOC_BLE_POWER_CONTROL_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CAPS_NO_RESET_BY_ANA_BOD": true, + "SOC_CLK_OSC_SLOW_SUPPORTED": true, + "SOC_CLK_RC32K_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CLOCKOUT_HAS_SOURCE_GATE": true, + "SOC_COEX_HW_PTI": true, + "SOC_CPU_BREAKPOINTS_NUM": 4, + "SOC_CPU_CORES_NUM": 1, + "SOC_CPU_HAS_CSR_PC": true, + "SOC_CPU_HAS_FLEXIBLE_INTC": true, + "SOC_CPU_HAS_PMA": true, + "SOC_CPU_IDRAM_SPLIT_USING_PMP": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_PMP_REGION_GRANULARITY": 4, + "SOC_CPU_WATCHPOINTS_NUM": 4, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, + "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED": true, + "SOC_DEBUG_HAVE_OCD_STUB_BINS": true, + "SOC_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, + "SOC_ECC_SUPPORTED": true, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_PAD_JTAG": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_ESP_NIMBLE_CONTROLLER": true, + "SOC_ETM_CHANNELS_PER_GROUP": 50, + "SOC_ETM_GROUPS": 1, + "SOC_ETM_SUPPORTED": true, + "SOC_ETM_SUPPORT_SLEEP_RETENTION": true, + "SOC_EXTERNAL_COEX_ADVANCE": true, + "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, + "SOC_GDMA_SUPPORTED": true, + "SOC_GDMA_SUPPORT_ETM": true, + "SOC_GDMA_SUPPORT_SLEEP_RETENTION": true, + "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 8, + "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, + "SOC_GPIO_FLEX_GLITCH_FILTER_NUM": 8, + "SOC_GPIO_IN_RANGE_MAX": 30, + "SOC_GPIO_OUT_RANGE_MAX": 30, + "SOC_GPIO_PIN_COUNT": 31, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, + "SOC_GPIO_SUPPORT_ETM": true, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 2147483392, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_I2C_NUM": 1, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_HW_FSM_RST": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_SLEEP_RETENTION": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_ETM": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_I2S_SUPPORT_SLEEP_RETENTION": true, + "SOC_IEEE802154_SUPPORTED": true, + "SOC_INT_PLIC_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 6, + "SOC_LEDC_FADE_PARAMS_BIT_WIDTH": 10, + "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX": 16, + "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK": true, + "SOC_LEDC_SUPPORT_SLEEP_RETENTION": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_AON_SUPPORTED": true, + "SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR": true, + "SOC_LP_CORE_SUPPORTED": true, + "SOC_LP_CORE_SUPPORT_ETM": true, + "SOC_LP_I2C_FIFO_LEN": 16, + "SOC_LP_I2C_NUM": 1, + "SOC_LP_I2C_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPHERALS_SUPPORTED": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_LP_TIMER_SUPPORTED": true, + "SOC_LP_UART_FIFO_LEN": 16, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP": true, + "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": 1, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SUPPORT_ETM": true, + "SOC_MCPWM_SUPPORT_SLEEP_RETENTION": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_DI_VADDR_SHARED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED": true, + "SOC_MMU_PAGE_SIZE_CONFIGURABLE": true, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MODEM_CLOCK_IS_INDEPENDENT": true, + "SOC_MODEM_CLOCK_SUPPORTED": true, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MWDT_SUPPORT_SLEEP_RETENTION": true, + "SOC_MWDT_SUPPORT_XTAL": true, + "SOC_PARLIO_GROUPS": 1, + "SOC_PARLIO_RX_UNITS_PER_GROUP": 1, + "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH": 16, + "SOC_PARLIO_SUPPORTED": true, + "SOC_PARLIO_SUPPORT_SLEEP_RETENTION": true, + "SOC_PARLIO_TX_RX_SHARE_INTERRUPT": true, + "SOC_PARLIO_TX_UNITS_PER_GROUP": 1, + "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH": 16, + "SOC_PAU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE": true, + "SOC_PCNT_SUPPORT_SLEEP_RETENTION": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PMU_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_REGDMA": true, + "SOC_PM_PAU_LINK_NUM": 4, + "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR": true, + "SOC_PM_PAU_REGDMA_LINK_WIFIMAC": true, + "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE": true, + "SOC_PM_RETENTION_HAS_CLOCK_BUG": true, + "SOC_PM_RETENTION_MODULE_NUM": 32, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BEACON_WAKEUP": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN": true, + "SOC_PM_SUPPORT_HP_AON_PD": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_PMU_MODEM_STATE": true, + "SOC_PM_SUPPORT_RC32K_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TOP_PD": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PM_SUPPORT_XTAL32K_PD": true, + "SOC_RCC_IS_INDEPENDENT": true, + "SOC_RMT_CHANNELS_PER_GROUP": 4, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_SLEEP_RETENTION": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, + "SOC_RNG_CLOCK_IS_INDEPENDENT": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 3072, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 8, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDM_CHANNELS_PER_GROUP": 4, + "SOC_SDM_CLK_SUPPORT_PLL_F80M": true, + "SOC_SDM_CLK_SUPPORT_XTAL": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_ECC": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, + "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 2, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_PLL_F80M": true, + "SOC_SPI_SUPPORT_CLK_RC_FAST": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SPI_SUPPORT_SLEEP_RETENTION": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_SYSTIMER_SUPPORT_ETM": true, + "SOC_SYSTIMER_SUPPORT_RC_FAST": true, + "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, + "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_RC_FAST": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, + "SOC_TIMER_SUPPORT_ETM": true, + "SOC_TIMER_SUPPORT_SLEEP_RETENTION": true, + "SOC_TWAI_BRP_MAX": 32768, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_XTAL": true, + "SOC_TWAI_CONTROLLER_NUM": 2, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_TWAI_SUPPORT_SLEEP_RETENTION": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HAS_LP_UART": true, + "SOC_UART_HP_NUM": 2, + "SOC_UART_LP_NUM": 1, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_PLL_F80M_CLK": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_SLEEP_RETENTION": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_ULP_LP_UART_SUPPORTED": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HE_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MAC_VERSION_NUM": 2, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": 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, + "SPI_FLASH_AUTO_SUSPEND": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": false, + "SPI_FLASH_SUPPORT_ISSI_CHIP": false, + "SPI_FLASH_SUPPORT_MXIC_CHIP": false, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": false, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "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, + "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, + "TEMP_SENSOR_ISR_IRAM_SAFE": false, + "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, + "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, + "USJ_ENABLE_USB_SERIAL_JTAG": true, + "VFS_INITIALIZE_DEV_NULL": 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_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_40": true +} \ No newline at end of file diff --git a/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj new file mode 100644 index 0000000..015da8b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj new file mode 100644 index 0000000..f5f9984 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj new file mode 100644 index 0000000..49eadef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj new file mode 100644 index 0000000..f332646 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_trace/cmake_install.cmake b/JoystickControlServo/build/esp-idf/app_trace/cmake_install.cmake new file mode 100644 index 0000000..ae638e7 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/app_trace/libapp_trace.a b/JoystickControlServo/build/esp-idf/app_trace/libapp_trace.a new file mode 100644 index 0000000..6a8aa2d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_trace/libapp_trace.a differ diff --git a/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj new file mode 100644 index 0000000..19b841b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj new file mode 100644 index 0000000..7874828 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/app_update/cmake_install.cmake b/JoystickControlServo/build/esp-idf/app_update/cmake_install.cmake new file mode 100644 index 0000000..1f1deab --- /dev/null +++ b/JoystickControlServo/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/app_update/libapp_update.a b/JoystickControlServo/build/esp-idf/app_update/libapp_update.a new file mode 100644 index 0000000..2cdf561 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/app_update/libapp_update.a differ diff --git a/JoystickControlServo/build/esp-idf/bootloader/bootloader-flash_args.in b/JoystickControlServo/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..46c4661 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin \ No newline at end of file diff --git a/JoystickControlServo/build/esp-idf/bootloader/cmake_install.cmake b/JoystickControlServo/build/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..b2ad5af --- /dev/null +++ b/JoystickControlServo/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..abffecc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj new file mode 100644 index 0000000..a4ba837 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..656cf4f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..0e457c6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..195281a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..9c738ff Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..2b719c6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..bc15613 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..1020eb8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj new file mode 100644 index 0000000..e426232 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..a93d3eb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj new file mode 100644 index 0000000..2231c01 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c6/secure_boot_secure_features.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..bf8a550 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..115353e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..22d8e4e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj new file mode 100644 index 0000000..1bf7ab9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..285edb4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/cmake_install.cmake b/JoystickControlServo/build/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..c5a7b07 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/bootloader_support/libbootloader_support.a b/JoystickControlServo/build/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..c2f737b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/JoystickControlServo/build/esp-idf/bt/cmake_install.cmake b/JoystickControlServo/build/esp-idf/bt/cmake_install.cmake new file mode 100644 index 0000000..e0a18d7 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/cmake_install.cmake b/JoystickControlServo/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..2bec300 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/cmake_install.cmake @@ -0,0 +1,549 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_dac/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_isp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_jpeg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ppa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ulp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj b/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj new file mode 100644 index 0000000..b0258f9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/cmock/cmake_install.cmake b/JoystickControlServo/build/esp-idf/cmock/cmake_install.cmake new file mode 100644 index 0000000..bbc6a5c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/cmock/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/cmock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/cmock/libcmock.a b/JoystickControlServo/build/esp-idf/cmock/libcmock.a new file mode 100644 index 0000000..5c2d415 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cmock/libcmock.a differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj new file mode 100644 index 0000000..5e77b22 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj new file mode 100644 index 0000000..3479914 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj new file mode 100644 index 0000000..a40b346 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj new file mode 100644 index 0000000..0abc736 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj new file mode 100644 index 0000000..68d2904 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj new file mode 100644 index 0000000..17ff54d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj new file mode 100644 index 0000000..1b69dd7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj new file mode 100644 index 0000000..fe2cd76 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj new file mode 100644 index 0000000..11659fa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj new file mode 100644 index 0000000..a18050f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj new file mode 100644 index 0000000..8307083 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj new file mode 100644 index 0000000..763941b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj new file mode 100644 index 0000000..dd95d21 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj new file mode 100644 index 0000000..ea30984 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj new file mode 100644 index 0000000..4b95d69 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj new file mode 100644 index 0000000..5270ce6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj new file mode 100644 index 0000000..5694efc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj new file mode 100644 index 0000000..53b1de4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj new file mode 100644 index 0000000..4e1629c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/console/cmake_install.cmake b/JoystickControlServo/build/esp-idf/console/cmake_install.cmake new file mode 100644 index 0000000..dcb839d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/console/libconsole.a b/JoystickControlServo/build/esp-idf/console/libconsole.a new file mode 100644 index 0000000..215aed8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/console/libconsole.a differ diff --git a/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj new file mode 100644 index 0000000..d214a67 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj new file mode 100644 index 0000000..a0dee14 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj new file mode 100644 index 0000000..38feb94 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/cxx/cmake_install.cmake b/JoystickControlServo/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..958fb0e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/cxx/libcxx.a b/JoystickControlServo/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..5504137 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/cxx/libcxx.a differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj new file mode 100644 index 0000000..54ce398 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj new file mode 100644 index 0000000..630bc14 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj new file mode 100644 index 0000000..756efd3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj new file mode 100644 index 0000000..53676ce Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj new file mode 100644 index 0000000..65612fa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj new file mode 100644 index 0000000..5a00a17 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj new file mode 100644 index 0000000..e437eb5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj new file mode 100644 index 0000000..92c140f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj new file mode 100644 index 0000000..3bb4131 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj new file mode 100644 index 0000000..12426c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj new file mode 100644 index 0000000..1772a90 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/driver/cmake_install.cmake b/JoystickControlServo/build/esp-idf/driver/cmake_install.cmake new file mode 100644 index 0000000..75d3d37 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/driver/libdriver.a b/JoystickControlServo/build/esp-idf/driver/libdriver.a new file mode 100644 index 0000000..1f05db7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/driver/libdriver.a differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj new file mode 100644 index 0000000..c4813f9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_fields.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj new file mode 100644 index 0000000..13e93ec Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_rtc_calib.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj new file mode 100644 index 0000000..71c4cc7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_table.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj new file mode 100644 index 0000000..7c7ea37 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c6/esp_efuse_utility.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..0c07fc3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..4a1425e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..f5fdf24 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj new file mode 100644 index 0000000..1e447bb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..4c9a4cd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/efuse/cmake_install.cmake b/JoystickControlServo/build/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..1d97e8b --- /dev/null +++ b/JoystickControlServo/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/efuse/libefuse.a b/JoystickControlServo/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..2e75d7b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/efuse/libefuse.a differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj new file mode 100644 index 0000000..c268a92 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj new file mode 100644 index 0000000..ce992da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj new file mode 100644 index 0000000..abe137e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj new file mode 100644 index 0000000..67cdb45 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj new file mode 100644 index 0000000..5156e3f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp-tls/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp-tls/cmake_install.cmake new file mode 100644 index 0000000..7260d84 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp-tls/libesp-tls.a b/JoystickControlServo/build/esp-idf/esp-tls/libesp-tls.a new file mode 100644 index 0000000..d178beb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp-tls/libesp-tls.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj new file mode 100644 index 0000000..edff80b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj new file mode 100644 index 0000000..a37dcb9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj new file mode 100644 index 0000000..b3bec4e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj new file mode 100644 index 0000000..9239ee8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj new file mode 100644 index 0000000..962bb84 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj new file mode 100644 index 0000000..fdcf6bb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj new file mode 100644 index 0000000..0c67858 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj new file mode 100644 index 0000000..fcc04c6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj new file mode 100644 index 0000000..ef905b7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c6/curve_fitting_coefficients.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj new file mode 100644 index 0000000..44b40f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_adc/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_adc/cmake_install.cmake new file mode 100644 index 0000000..f113880 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_adc/libesp_adc.a b/JoystickControlServo/build/esp-idf/esp_adc/libesp_adc.a new file mode 100644 index 0000000..1ced2ce Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_adc/libesp_adc.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..9c22dcf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_app_format/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..a8de8c4 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_app_format/libesp_app_format.a b/JoystickControlServo/build/esp-idf/esp_app_format/libesp_app_format.a new file mode 100644 index 0000000..b726e4e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_app_format/libesp_app_format.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..4fe8835 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..c0250c2 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/JoystickControlServo/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..9aaecfb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj new file mode 100644 index 0000000..d0e845a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c6/esp_coex_adapter.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj new file mode 100644 index 0000000..4eea310 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj new file mode 100644 index 0000000..4da10fa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj new file mode 100644 index 0000000..68b34c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..de3cc57 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_coex/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_coex/cmake_install.cmake new file mode 100644 index 0000000..fdf30cf --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_coex/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_coex/libesp_coex.a b/JoystickControlServo/build/esp-idf/esp_coex/libesp_coex.a new file mode 100644 index 0000000..de8cc2b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_coex/libesp_coex.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..cd79163 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_common/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..eb47bea --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_common/libesp_common.a b/JoystickControlServo/build/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..6092e83 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_common/libesp_common.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake new file mode 100644 index 0000000..01ffc48 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj new file mode 100644 index 0000000..8b08558 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj new file mode 100644 index 0000000..746d030 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_cam/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_cam/cmake_install.cmake new file mode 100644 index 0000000..878e3e1 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_cam/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_cam/libesp_driver_cam.a b/JoystickControlServo/build/esp-idf/esp_driver_cam/libesp_driver_cam.a new file mode 100644 index 0000000..5378831 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_cam/libesp_driver_cam.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_dac/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_dac/cmake_install.cmake new file mode 100644 index 0000000..e65963d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_dac/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj new file mode 100644 index 0000000..45e3555 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj new file mode 100644 index 0000000..247ae4d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj new file mode 100644 index 0000000..fbb46b3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj new file mode 100644 index 0000000..5857af0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj new file mode 100644 index 0000000..1f0d686 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj new file mode 100644 index 0000000..2a644da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj new file mode 100644 index 0000000..f7b59ac Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_gpio/cmake_install.cmake new file mode 100644 index 0000000..1fc33c7 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_gpio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a b/JoystickControlServo/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a new file mode 100644 index 0000000..5245f0c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj new file mode 100644 index 0000000..cc92e65 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj new file mode 100644 index 0000000..44e916d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj new file mode 100644 index 0000000..dd7443e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gptimer/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/cmake_install.cmake new file mode 100644 index 0000000..cf8f210 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a new file mode 100644 index 0000000..c9fd293 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj new file mode 100644 index 0000000..2e54cbc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj new file mode 100644 index 0000000..4e4ebb7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj new file mode 100644 index 0000000..6bcdc4e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2c/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_i2c/cmake_install.cmake new file mode 100644 index 0000000..427992d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_i2c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a b/JoystickControlServo/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a new file mode 100644 index 0000000..abe00ba Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj new file mode 100644 index 0000000..643fa21 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj new file mode 100644 index 0000000..0f67728 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj new file mode 100644 index 0000000..0232d1c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj new file mode 100644 index 0000000..5311e5e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj new file mode 100644 index 0000000..5ab3b12 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj new file mode 100644 index 0000000..dc1fa6a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_i2s/cmake_install.cmake new file mode 100644 index 0000000..f76cffa --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_i2s/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a b/JoystickControlServo/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a new file mode 100644 index 0000000..c86aab1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_isp/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_isp/cmake_install.cmake new file mode 100644 index 0000000..4f3edab --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_isp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_jpeg/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_jpeg/cmake_install.cmake new file mode 100644 index 0000000..ed2db50 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_jpeg/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj new file mode 100644 index 0000000..d26f004 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_ledc/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_ledc/cmake_install.cmake new file mode 100644 index 0000000..01aa1b1 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_ledc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a b/JoystickControlServo/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a new file mode 100644 index 0000000..ddb44b8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj new file mode 100644 index 0000000..cb9f900 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj new file mode 100644 index 0000000..add1e71 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj new file mode 100644 index 0000000..e845080 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj new file mode 100644 index 0000000..986c770 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj new file mode 100644 index 0000000..6c365d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj new file mode 100644 index 0000000..02c2919 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj new file mode 100644 index 0000000..4f68618 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj new file mode 100644 index 0000000..ba603c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj new file mode 100644 index 0000000..d14ab1e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake new file mode 100644 index 0000000..66ccdd9 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a new file mode 100644 index 0000000..e24e167 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj new file mode 100644 index 0000000..72e8e6c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj new file mode 100644 index 0000000..a606625 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj new file mode 100644 index 0000000..016d385 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_parlio/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_parlio/cmake_install.cmake new file mode 100644 index 0000000..c76932c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_parlio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a b/JoystickControlServo/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a new file mode 100644 index 0000000..7bef15d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj new file mode 100644 index 0000000..3227175 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_pcnt/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/cmake_install.cmake new file mode 100644 index 0000000..c1a637b --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a new file mode 100644 index 0000000..6e0531b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_ppa/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_ppa/cmake_install.cmake new file mode 100644 index 0000000..96b6cb8 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_ppa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj new file mode 100644 index 0000000..048555e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj new file mode 100644 index 0000000..a03fae5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj new file mode 100644 index 0000000..35a2de5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj new file mode 100644 index 0000000..d1535b0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_rmt/cmake_install.cmake new file mode 100644 index 0000000..d97a60d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_rmt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a b/JoystickControlServo/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a new file mode 100644 index 0000000..33f564e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj new file mode 100644 index 0000000..87a49ba Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdio/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_sdio/cmake_install.cmake new file mode 100644 index 0000000..addc56e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_sdio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a b/JoystickControlServo/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a new file mode 100644 index 0000000..5484207 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj new file mode 100644 index 0000000..b08f2d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdm/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_sdm/cmake_install.cmake new file mode 100644 index 0000000..fbef408 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_sdm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a b/JoystickControlServo/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a new file mode 100644 index 0000000..7164af3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake new file mode 100644 index 0000000..8da159a --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj new file mode 100644 index 0000000..846cfe1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj new file mode 100644 index 0000000..8ef5989 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj new file mode 100644 index 0000000..ab13d84 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdspi/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/cmake_install.cmake new file mode 100644 index 0000000..2c5c935 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a new file mode 100644 index 0000000..7dfaa95 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj new file mode 100644 index 0000000..d0cf984 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj new file mode 100644 index 0000000..6589df5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj new file mode 100644 index 0000000..2b1dc0a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj new file mode 100644 index 0000000..d1b4165 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj new file mode 100644 index 0000000..7847288 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_spi/cmake_install.cmake new file mode 100644 index 0000000..4a85333 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_spi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_spi/libesp_driver_spi.a b/JoystickControlServo/build/esp-idf/esp_driver_spi/libesp_driver_spi.a new file mode 100644 index 0000000..8dae846 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_spi/libesp_driver_spi.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake new file mode 100644 index 0000000..e30ce5e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj new file mode 100644 index 0000000..fee4eac Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj new file mode 100644 index 0000000..c503d51 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_tsens/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_tsens/cmake_install.cmake new file mode 100644 index 0000000..e1666a5 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_tsens/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a b/JoystickControlServo/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a new file mode 100644 index 0000000..b5f03e3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj new file mode 100644 index 0000000..962cc6a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj new file mode 100644 index 0000000..028df30 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_uart/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_uart/cmake_install.cmake new file mode 100644 index 0000000..6b48a5d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_uart/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_uart/libesp_driver_uart.a b/JoystickControlServo/build/esp-idf/esp_driver_uart/libesp_driver_uart.a new file mode 100644 index 0000000..f4bf968 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_uart/libesp_driver_uart.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj new file mode 100644 index 0000000..b08aca7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj new file mode 100644 index 0000000..bfd7847 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj new file mode 100644 index 0000000..ca9b5be Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake new file mode 100644 index 0000000..be425be --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a new file mode 100644 index 0000000..7844858 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj new file mode 100644 index 0000000..ed239e2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj new file mode 100644 index 0000000..55cb2b7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj new file mode 100644 index 0000000..115dfd2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_eth/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_eth/cmake_install.cmake new file mode 100644 index 0000000..89006f5 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_eth/libesp_eth.a b/JoystickControlServo/build/esp-idf/esp_eth/libesp_eth.a new file mode 100644 index 0000000..74da7fe Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_eth/libesp_eth.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj new file mode 100644 index 0000000..5b38cdc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj new file mode 100644 index 0000000..c3ee2b9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj new file mode 100644 index 0000000..5a6206d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_event/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_event/cmake_install.cmake new file mode 100644 index 0000000..104afef --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_event/libesp_event.a b/JoystickControlServo/build/esp-idf/esp_event/libesp_event.a new file mode 100644 index 0000000..ec8b0c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_event/libesp_event.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj new file mode 100644 index 0000000..11ef538 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj new file mode 100644 index 0000000..76b1dcb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj new file mode 100644 index 0000000..b057c9c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj new file mode 100644 index 0000000..19ce99c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj new file mode 100644 index 0000000..14f376e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_gdbstub/cmake_install.cmake new file mode 100644 index 0000000..852f78a --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_gdbstub/libesp_gdbstub.a b/JoystickControlServo/build/esp-idf/esp_gdbstub/libesp_gdbstub.a new file mode 100644 index 0000000..b697477 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_gdbstub/libesp_gdbstub.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj new file mode 100644 index 0000000..07f2bcf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj new file mode 100644 index 0000000..5f409ce Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj new file mode 100644 index 0000000..709c4da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hid/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_hid/cmake_install.cmake new file mode 100644 index 0000000..1e8d92b --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_hid/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_hid/libesp_hid.a b/JoystickControlServo/build/esp-idf/esp_hid/libesp_hid.a new file mode 100644 index 0000000..f14c227 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hid/libesp_hid.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj new file mode 100644 index 0000000..4f9352f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj new file mode 100644 index 0000000..fca6d5f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj new file mode 100644 index 0000000..02784ed Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj new file mode 100644 index 0000000..440d64a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_http_client/cmake_install.cmake new file mode 100644 index 0000000..b4fd7ee --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_http_client/libesp_http_client.a b/JoystickControlServo/build/esp-idf/esp_http_client/libesp_http_client.a new file mode 100644 index 0000000..fef3bbd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_client/libesp_http_client.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj new file mode 100644 index 0000000..2e93d6b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj new file mode 100644 index 0000000..b30a89c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj new file mode 100644 index 0000000..3fffe8c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj new file mode 100644 index 0000000..3d4e05d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj new file mode 100644 index 0000000..b583f3b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj new file mode 100644 index 0000000..83d6f3a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj new file mode 100644 index 0000000..9a709ff Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_http_server/cmake_install.cmake new file mode 100644 index 0000000..0a32aaa --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_http_server/libesp_http_server.a b/JoystickControlServo/build/esp-idf/esp_http_server/libesp_http_server.a new file mode 100644 index 0000000..cebe569 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_http_server/libesp_http_server.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj new file mode 100644 index 0000000..fdc785d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_https_ota/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_https_ota/cmake_install.cmake new file mode 100644 index 0000000..2848dcc --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_https_ota/libesp_https_ota.a b/JoystickControlServo/build/esp-idf/esp_https_ota/libesp_https_ota.a new file mode 100644 index 0000000..4a1c15d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_https_ota/libesp_https_ota.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj b/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj new file mode 100644 index 0000000..95a91db Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_https_server/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_https_server/cmake_install.cmake new file mode 100644 index 0000000..d0f87e0 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_https_server/libesp_https_server.a b/JoystickControlServo/build/esp-idf/esp_https_server/libesp_https_server.a new file mode 100644 index 0000000..dfdfb25 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_https_server/libesp_https_server.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj new file mode 100644 index 0000000..c4942f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj new file mode 100644 index 0000000..abcb9c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..8f88e22 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj new file mode 100644 index 0000000..15f5f18 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj new file mode 100644 index 0000000..ced766b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj new file mode 100644 index 0000000..612e7dc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj new file mode 100644 index 0000000..df03c9b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj new file mode 100644 index 0000000..2863c20 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj new file mode 100644 index 0000000..19bc6f0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj new file mode 100644 index 0000000..fb5ef1c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj new file mode 100644 index 0000000..9eafc5b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj new file mode 100644 index 0000000..822b5c5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj new file mode 100644 index 0000000..7be52cb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj new file mode 100644 index 0000000..df800fb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj new file mode 100644 index 0000000..30aeb47 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..bdcc5f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj new file mode 100644 index 0000000..4adea1b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj new file mode 100644 index 0000000..13435f2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj new file mode 100644 index 0000000..939c312 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_clock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj new file mode 100644 index 0000000..8140108 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj new file mode 100644 index 0000000..03ad486 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_cpu_asm.S.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj new file mode 100644 index 0000000..4563b14 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c6/sleep_modem_state.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj new file mode 100644 index 0000000..abf32b4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj new file mode 100644 index 0000000..963c1cd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj new file mode 100644 index 0000000..7a99aa6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj new file mode 100644 index 0000000..1943e6e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj new file mode 100644 index 0000000..c75a041 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/chip_info.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj new file mode 100644 index 0000000..50b9c9d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/cpu_region_protect.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_clk_tree.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_clk_tree.c.obj new file mode 100644 index 0000000..4982ee4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_clk_tree.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj new file mode 100644 index 0000000..bbaac6a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/esp_cpu_intr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/io_mux.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/io_mux.c.obj new file mode 100644 index 0000000..9786d95 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/io_mux.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj new file mode 100644 index 0000000..49b0bba Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/ocode_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj new file mode 100644 index 0000000..f1fe26a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj new file mode 100644 index 0000000..1032f0d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_param.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj new file mode 100644 index 0000000..9c6976e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/pmu_sleep.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj new file mode 100644 index 0000000..2514e8b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj new file mode 100644 index 0000000..4fcf3ca Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_clk_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj new file mode 100644 index 0000000..149b4bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/rtc_time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..bcf1fbc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/sar_periph_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj new file mode 100644 index 0000000..dc4724c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c6/systimer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/JoystickControlServo/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..0458e6e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj new file mode 100644 index 0000000..fd32b3e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj new file mode 100644 index 0000000..80608d4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj new file mode 100644 index 0000000..26343bb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj new file mode 100644 index 0000000..b662624 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj new file mode 100644 index 0000000..87889c8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj new file mode 100644 index 0000000..6a0e33b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj new file mode 100644 index 0000000..d198f56 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj new file mode 100644 index 0000000..a938dc6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj new file mode 100644 index 0000000..9ec3b97 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj new file mode 100644 index 0000000..3d1611c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj new file mode 100644 index 0000000..319b872 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj new file mode 100644 index 0000000..09a523e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj new file mode 100644 index 0000000..4b55a2b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj new file mode 100644 index 0000000..0511fb6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj new file mode 100644 index 0000000..ce72e18 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj new file mode 100644 index 0000000..1905192 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..283cc5c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/libesp_hw_support.a b/JoystickControlServo/build/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..6fd1d77 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..b064e18 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake new file mode 100644 index 0000000..0243957 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_hw_support/port/esp32c6/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj new file mode 100644 index 0000000..a29b0c6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj new file mode 100644 index 0000000..e8dd4b7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj new file mode 100644 index 0000000..82bd9a0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj new file mode 100644 index 0000000..1be2cdc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj new file mode 100644 index 0000000..5baf634 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj new file mode 100644 index 0000000..6bdc19a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj new file mode 100644 index 0000000..cc0f63a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj new file mode 100644 index 0000000..b4014b3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj new file mode 100644 index 0000000..2fde41e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_lcd/cmake_install.cmake new file mode 100644 index 0000000..21fed00 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_lcd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_lcd/libesp_lcd.a b/JoystickControlServo/build/esp-idf/esp_lcd/libesp_lcd.a new file mode 100644 index 0000000..9bb45b3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_lcd/libesp_lcd.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj b/JoystickControlServo/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..cf39609 Binary files /dev/null and b/JoystickControlServo/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/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj b/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj new file mode 100644 index 0000000..3b10373 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj b/JoystickControlServo/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..f99df4b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj b/JoystickControlServo/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..4e763f5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_local_ctrl/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_local_ctrl/cmake_install.cmake new file mode 100644 index 0000000..d5d4013 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a b/JoystickControlServo/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a new file mode 100644 index 0000000..d2a0fea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj new file mode 100644 index 0000000..5730514 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj new file mode 100644 index 0000000..b841f65 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj new file mode 100644 index 0000000..d0e42bd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/ext_mem_layout.c.obj b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/ext_mem_layout.c.obj new file mode 100644 index 0000000..08b2a5b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c6/ext_mem_layout.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_mm/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_mm/cmake_install.cmake new file mode 100644 index 0000000..23ba196 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_mm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_mm/libesp_mm.a b/JoystickControlServo/build/esp-idf/esp_mm/libesp_mm.a new file mode 100644 index 0000000..76ac316 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_mm/libesp_mm.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj new file mode 100644 index 0000000..d08511f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj new file mode 100644 index 0000000..33ff79f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj new file mode 100644 index 0000000..7bd3783 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj new file mode 100644 index 0000000..48bf408 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj new file mode 100644 index 0000000..25196c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj new file mode 100644 index 0000000..69e5660 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj new file mode 100644 index 0000000..40daa47 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj new file mode 100644 index 0000000..7cfd3aa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj new file mode 100644 index 0000000..a482186 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_netif/cmake_install.cmake new file mode 100644 index 0000000..26650c0 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_netif/libesp_netif.a b/JoystickControlServo/build/esp-idf/esp_netif/libesp_netif.a new file mode 100644 index 0000000..6b9ff18 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_netif/libesp_netif.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_netif_stack/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_netif_stack/cmake_install.cmake new file mode 100644 index 0000000..4f8e03a --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_netif_stack/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif_stack + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj new file mode 100644 index 0000000..c96c0bf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj new file mode 100644 index 0000000..040f334 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_partition/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_partition/cmake_install.cmake new file mode 100644 index 0000000..0495273 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_partition/libesp_partition.a b/JoystickControlServo/build/esp-idf/esp_partition/libesp_partition.a new file mode 100644 index 0000000..fed89f0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_partition/libesp_partition.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c6/phy_init_data.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c6/phy_init_data.c.obj new file mode 100644 index 0000000..5513b2e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c6/phy_init_data.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj new file mode 100644 index 0000000..033db4e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..9201ca6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj new file mode 100644 index 0000000..a7ce6bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj new file mode 100644 index 0000000..98922b0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj new file mode 100644 index 0000000..4ffeb8c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_phy/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_phy/cmake_install.cmake new file mode 100644 index 0000000..0d63550 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_phy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_phy/libesp_phy.a b/JoystickControlServo/build/esp-idf/esp_phy/libesp_phy.a new file mode 100644 index 0000000..4e315c0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_phy/libesp_phy.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj new file mode 100644 index 0000000..41310ea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj new file mode 100644 index 0000000..9c585ee Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj new file mode 100644 index 0000000..dc02453 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_pm/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_pm/cmake_install.cmake new file mode 100644 index 0000000..f817fbf --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_pm/libesp_pm.a b/JoystickControlServo/build/esp-idf/esp_pm/libesp_pm.a new file mode 100644 index 0000000..3472a53 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_pm/libesp_pm.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_psram/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_psram/cmake_install.cmake new file mode 100644 index 0000000..4cfd1d4 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_psram/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj new file mode 100644 index 0000000..79fa9d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_ringbuf/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_ringbuf/cmake_install.cmake new file mode 100644 index 0000000..c8a4efd --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_ringbuf/libesp_ringbuf.a b/JoystickControlServo/build/esp-idf/esp_ringbuf/libesp_ringbuf.a new file mode 100644 index 0000000..47e2827 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_ringbuf/libesp_ringbuf.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..971392c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..81c32f6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..988b4a0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj new file mode 100644 index 0000000..d07fa57 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_hp_regi2c_esp32c6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj new file mode 100644 index 0000000..6a4fb64 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..1df8bec Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..46a3fea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..cfd1468 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj new file mode 100644 index 0000000..47855a4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj new file mode 100644 index 0000000..6b4c38a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..6c530f1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj new file mode 100644 index 0000000..7e182d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_rom/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..069723a --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_rom/libesp_rom.a b/JoystickControlServo/build/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..c5e5caf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_rom/libesp_rom.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj new file mode 100644 index 0000000..0970dac Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj new file mode 100644 index 0000000..97ff188 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj new file mode 100644 index 0000000..34530bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj new file mode 100644 index 0000000..534af72 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj new file mode 100644 index 0000000..419df24 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_security/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..e7fdf89 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_security/libesp_security.a b/JoystickControlServo/build/esp-idf/esp_security/libesp_security.a new file mode 100644 index 0000000..60a722e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_security/libesp_security.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj new file mode 100644 index 0000000..0df313e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..efc723a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj new file mode 100644 index 0000000..d4f4842 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj new file mode 100644 index 0000000..a7cd225 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj new file mode 100644 index 0000000..2163404 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj new file mode 100644 index 0000000..e090797 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj new file mode 100644 index 0000000..eb62f4d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj new file mode 100644 index 0000000..5f7fee0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj new file mode 100644 index 0000000..1005a95 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj new file mode 100644 index 0000000..177660b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj new file mode 100644 index 0000000..19d4ca7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj new file mode 100644 index 0000000..e7c9886 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj new file mode 100644 index 0000000..21ed82e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj new file mode 100644 index 0000000..7933070 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj new file mode 100644 index 0000000..14aa44b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj new file mode 100644 index 0000000..cb04593 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj new file mode 100644 index 0000000..56b9b83 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj new file mode 100644 index 0000000..9cc0269 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/cache_err_int.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj new file mode 100644 index 0000000..a1c5456 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/clk.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj new file mode 100644 index 0000000..8e2fd07 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/reset_reason.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj new file mode 100644 index 0000000..c0b0300 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c6/system_internal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj new file mode 100644 index 0000000..6764af6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj new file mode 100644 index 0000000..a768aa1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj new file mode 100644 index 0000000..1a333ba Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj new file mode 100644 index 0000000..f16b289 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj new file mode 100644 index 0000000..1a433b2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj new file mode 100644 index 0000000..582c3e2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj new file mode 100644 index 0000000..4d13e26 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj new file mode 100644 index 0000000..5cbd26e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj new file mode 100644 index 0000000..049a619 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/sections.ld-d65dc84.bat b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/sections.ld-d65dc84.bat new file mode 100644 index 0000000..84b23d6 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/CMakeFiles/sections.ld-d65dc84.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system || (set FAIL_LINE=2& goto :ABORT) +C:\Users\famil\.espressif\python_env\idf5.4_py3.11_env\Scripts\python.exe C:/Users/famil/esp/v5.4/esp-idf/tools/ldgen/ldgen.py --config C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig --fragments-list C:/Users/famil/esp/v5.4/esp-idf/components/riscv/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/app.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/common.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/soc.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/hal/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/log/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/heap/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/soc/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/ldo/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/linker_common.lf;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/newlib.lf;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/system_libs.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/vfs/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/lwip/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/linker.lf;C:/Users/famil/esp/v5.4/esp-idf/components/openthread/linker.lf --input C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in --output C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/Users/famil/esp/v5.4/esp-idf/Kconfig --env-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/config.env --libraries-file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/ldgen_libraries --objdump C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/JoystickControlServo/build/esp-idf/esp_system/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..10da4b4 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/JoystickControlServo/build/esp-idf/esp_system/ld/linker_script_generator.cmake new file mode 100644 index 0000000..845c872 --- /dev/null +++ b/JoystickControlServo/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/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld b/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld new file mode 100644 index 0000000..77ac8ad --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,146 @@ +/* + + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/** + + * ESP32-C6 Linker Script Memory Layout + + * This file describes the memory layout (memory blocks) by virtual memory addresses. + + * This linker script is passed through the C preprocessor to include configuration options. + + * Please use preprocessor features sparingly! + + * Restrict to simple macros with numeric values, and/or #if/#endif blocks. + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.4.0 Configuration Header + + */ + +/* List of deprecated options */ +/* + + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * PMP region granularity size + + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + + * the PMP granularity is 2^G+2 bytes. + + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* + + * IDRAM0_2_SEG_SIZE_DEFAULT is used when page size is 64KB + + */ +MEMORY +{ + /** + + * All these values assume the flash cache is on, and have the blocks this uses subtracted from the length + + * of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but + + * are connected to the data port of the CPU and eg allow byte-wise access. + + */ + /* Flash mapped instruction data */ + irom_seg (RX) : org = 0x42000020, len = (0x8000 << 8) - 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. + + */ + sram_seg (RWX) : org = 0x40800000, len = 0x4086E610 - 0x40800000 + /* Flash mapped constant data */ + drom_seg (R) : org = 0x42000020, len = (0x8000 << 8) - 0x20 + /* (See irom_seg for meaning of 0x20 offset in the above.) */ + /** + + * lp ram memory (RWX). Persists over deep sleep. // TODO: IDF-5667 + + */ + lp_ram_seg(RW) : org = 0x50000000, len = 0x4000 - (0 + (24)) + /* We reduced the size of lp_ram_seg by RESERVE_RTC_MEM value. + + It reserves the amount of LP memory that we use for this memory segment. + + This segment is intended for keeping: + + - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). + + - (higher addr) bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on). + + The aim of this is to keep data that will not be moved around and have a fixed address. + + */ + lp_reserved_seg(RW) : org = 0x50000000 + 0x4000 - (0 + (24)), len = (0 + (24)) +} +/* Heap ends at top of sram_seg */ +_heap_end = 0x40000000; +_data_seg_org = ORIGIN(rtc_data_seg); +/** + + * The lines below define location alias for .rtc.data section + + * C6 has no distinguished LP(RTC) fast and slow memory sections, instead, there is a unified LP_RAM section + + * Thus, the following region segments are not configurable like on other targets + + */ +REGION_ALIAS("rtc_iram_seg", lp_ram_seg ); +REGION_ALIAS("rtc_data_seg", rtc_iram_seg ); +REGION_ALIAS("rtc_slow_seg", rtc_iram_seg ); +REGION_ALIAS("rtc_data_location", rtc_iram_seg ); +REGION_ALIAS("rtc_reserved_seg", lp_reserved_seg ); + REGION_ALIAS("default_code_seg", irom_seg); + REGION_ALIAS("default_rodata_seg", drom_seg); +/** + + * If rodata default segment is placed in `drom_seg`, then flash's first rodata section must + + * also be first in the segment. + + */ + ASSERT(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg), + ".flash_rodata_dummy section must be placed at the beginning of the rodata segment.") diff --git a/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld b/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld new file mode 100644 index 0000000..90cef55 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,821 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: C:\Users\famil\COMPUTER\Owen\ESPmicrocontroller\JoystickControlServo\build\esp-idf\esp_system\ld\sections.ld.in */ + +/* + + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.4.0 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * PMP region granularity size + + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + + * the PMP granularity is 2^G+2 bytes. + + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* Default entry point */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /** + + * RTC fast memory holds RTC wake stub code, + + * including from any source file named rtc_wake_stub*.c + + */ + .rtc.text : + { + /* Align the start of RTC code region as per PMP granularity + + * this ensures we do not overwrite the permissions for the previous + + * region (ULP mem) regardless of its end alignment + + */ + + . = ALIGN(4); + _rtc_fast_start = ABSOLUTE(.); + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + *(.rtc.entry.text) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.text .text.*) + *(.rtc_text_end_test) + /* Align the end of RTC code region as per PMP granularity */ + . = ALIGN(4); + _rtc_text_end = ABSOLUTE(.); + } > lp_ram_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(.); + } > lp_ram_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. + + */ + .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.* .srodata.*) + _rtc_data_end = ABSOLUTE(.); + } > lp_ram_seg + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + _rtc_bss_end = ABSOLUTE(.); + } > lp_ram_seg + /** + + * 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. + + */ + .rtc_noinit (NOLOAD): + { + + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + + . = ALIGN(4); + _rtc_noinit_end = ABSOLUTE(.); + } > lp_ram_seg + /** + + * 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(.); + } > lp_ram_seg + /** + + * This section holds RTC data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep + + * sleep. + + */ + .rtc_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_reserved_start = ABSOLUTE(.); + /** + + * New data can only be added here to ensure existing data are not moved. + + * Because data have adhered to the end of the segment and code is relied + + * on it. + + * >> put new data here << + + */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_reserved_end = ABSOLUTE(.); + } > rtc_reserved_seg + _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; + ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), + "RTC reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + .iram0.text : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to start of IRAM */ + ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); + KEEP(*(.exception_vectors_table.text)); + KEEP(*(.exception_vectors.text)); + + . = ALIGN(4); + _invalid_pc_placeholder = ABSOLUTE(.); + /* Code marked as running 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.*) + *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) + *libcoexist.a:(.coexiram .coexiram.*) + *libcoexist.a:(.coexsleepiram .coexsleepiram.*) + *libesp_driver_gptimer.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_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) + *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) + *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) + *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:pmu_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_phy.a:phy_init.*(.literal.esp_phy_disable .text.esp_phy_disable) + *libesp_phy.a:phy_init.*(.literal.esp_phy_enable .text.esp_phy_enable) + *libesp_phy.a:phy_init.*(.literal.esp_wifi_bt_power_domain_off .text.esp_wifi_bt_power_domain_off) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_tlsf.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_wdt.*(.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:image_process.*(.literal .literal.* .text .text.*) + *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:esp_adapter.*(.literal.wifi_clock_disable_wrapper .text.wifi_clock_disable_wrapper) + *libesp_wifi.a:esp_adapter.*(.literal.wifi_clock_enable_wrapper .text.wifi_clock_enable_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.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .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.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) + *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:pmu_hal.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_hal_gpspi.*(.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) + *libheap.a:multi_heap.*(.literal._multi_heap_lock .text._multi_heap_lock) + *libheap.a:multi_heap.*(.literal._multi_heap_unlock .text._multi_heap_unlock) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_in_rom_init .text.multi_heap_in_rom_init) + *libieee802154.a:esp_ieee802154_ack.*(.literal.ieee802154_ack_config_pending_bit .text.ieee802154_ack_config_pending_bit) + *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_isr .text.ieee802154_isr) + *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_rx_frame_info_update .text.ieee802154_rx_frame_info_update) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_field_len .text.ieee802154_frame_get_security_field_len) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_payload_offset .text.ieee802154_frame_get_security_payload_offset) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_src_addr .text.ieee802154_frame_get_src_addr) + *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_security_header_offset .text.ieee802154_frame_security_header_offset) + *libieee802154.a:esp_ieee802154_frame.*(.literal.is_dst_panid_present .text.is_dst_panid_present) + *libieee802154.a:esp_ieee802154_frame.*(.literal.is_src_panid_present .text.is_src_panid_present) + *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_pending_mode .text.ieee802154_pib_get_pending_mode) + *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_rx_when_idle .text.ieee802154_pib_get_rx_when_idle) + *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_sec_update .text.ieee802154_sec_update) + *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_transmit_security_config .text.ieee802154_transmit_security_config) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_threshold .text.ieee802154_timer0_set_threshold) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_start .text.ieee802154_timer0_start) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_stop .text.ieee802154_timer0_stop) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_threshold .text.ieee802154_timer1_set_threshold) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_start .text.ieee802154_timer1_start) + *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_stop .text.ieee802154_timer1_stop) + *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_etm_channel_clear .text.ieee802154_etm_channel_clear) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifiextrairam .wifiextrairam.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislpiram .wifislpiram.*) + *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:(.wifiextrairam .wifiextrairam.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislpiram .wifislpiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item .text.intr_handler_get_arg) + *libriscv.a:vectors.*(.literal .literal.* .text .text.*) + *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.*) + } > sram_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* Align the end of code region as per PMP region granularity */ + . = ALIGN(4); + + . = ALIGN(4); + _iram_text_end = ABSOLUTE(.); + } > sram_seg + .iram0.data : + { + + . = ALIGN(16); + _iram_data_start = ABSOLUTE(.); + *(.iram.data .iram.data.*) + _coredump_iram_start = ABSOLUTE(.); + *(.iram2.coredump .iram2.coredump.*) + _coredump_iram_end = ABSOLUTE(.); + _iram_data_end = ABSOLUTE(.); + } > sram_seg + .iram0.bss (NOLOAD) : + { + + . = ALIGN(16); + _iram_bss_start = ABSOLUTE(.); + *(.iram.bss .iram.bss.*) + _iram_bss_end = ABSOLUTE(.); + + . = ALIGN(16); + _iram_end = ABSOLUTE(.); + } > sram_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + __global_pointer$ = . + 0x800; + *(.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.*) + *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:save.*(.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_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:pmu_sleep.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_tlsf.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal.*(.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:pmu_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_gpspi.*(.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.*) + *liblog.a:log_lock.*(.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(.); + } > sram_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(.); + } > sram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + + . = ALIGN(8); + _bss_start = ABSOLUTE(.); + /** + + * ldgen places all bss-related data to mapping[dram0_bss] + + * (See components/esp_system/app.lf). + + */ + *(.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(.); + } > sram_seg + .flash.text : + { + _stext = .; + /** + + * Mark the start of flash.text. + + * This can be used by the MMU driver to maintain the virtual address. + + */ + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_phy.a:phy_init.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *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 *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_phy.a:phy_init.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *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 *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_phy.a:phy_init.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *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 *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_phy.a:phy_init.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *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.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifiextrairam EXCLUDE_FILE(*libnet80211.a *libpp.a) .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.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislpiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*) + *libesp_driver_gptimer.a:gptimer.*(.text .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_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) + *libesp_event.a:default_event_loop.*(.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.*(.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.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *libesp_hw_support.a:gdma.*(.text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) + *libesp_hw_support.a:periph_ctrl.*(.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_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .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:sar_periph_ctrl.*(.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_phy.a:phy_init.*(.text .text.esp_phy_erase_cal_data_in_nvs .text.esp_phy_get_init_data .text.esp_phy_load_cal_and_init .text.esp_phy_load_cal_data_from_nvs .text.esp_phy_modem_deinit .text.esp_phy_modem_init .text.esp_phy_release_init_data .text.esp_phy_store_cal_data_to_nvs .text.esp_phy_update_country_info .text.load_cal_data_from_nvs_handle .text.phy_get_lock .text.store_cal_data_to_nvs_handle) + *libesp_system.a:esp_system_chip.*(.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.*(.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_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_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.disable_intr_wrapper .text.enable_intr_wrapper .text.esp_event_post_wrapper .text.esp_log_write_wrapper .text.esp_log_writev_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.esp_read_mac_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.nvs_open_wrapper .text.queue_create_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.regdma_link_set_write_wait_content_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.sleep_retention_find_link_by_id_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_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.*(.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:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_etm_task .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy) + *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_etm_task .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) + *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libheap.a:multi_heap.*(.text .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes) + *libieee802154.a:esp_ieee802154_ack.*(.text .text.ieee802154_add_pending_addr .text.ieee802154_clear_pending_addr .text.ieee802154_reset_pending_table) + *libieee802154.a:esp_ieee802154_dev.*(.text .text.enable_rx .text.ieee802154_cca .text.ieee802154_disable .text.ieee802154_enable .text.ieee802154_energy_detect .text.ieee802154_get_recent_lqi .text.ieee802154_get_recent_rssi .text.ieee802154_get_state .text.ieee802154_mac_deinit .text.ieee802154_mac_init .text.ieee802154_receive .text.ieee802154_receive_at .text.ieee802154_receive_done .text.ieee802154_receive_handle_done .text.ieee802154_sleep .text.ieee802154_sleep_deinit .text.ieee802154_sleep_init .text.ieee802154_transmit .text.ieee802154_transmit_at .text.ieee802154_transmit_done .text.ieee802154_transmit_internal .text.is_target_time_expired .text.isr_handle_timer0_done .text.rx_init .text.set_next_rx_buffer .text.start_ed .text.stop_cca .text.stop_current_operation .text.stop_ed .text.stop_rx .text.stop_rx_ack .text.stop_tx .text.stop_tx_ack .text.stop_tx_cca .text.tx_init) + *libieee802154.a:esp_ieee802154_frame.*(.text .text.ieee802154_frame_get_dest_panid .text.ieee802154_frame_get_dst_addr .text.ieee802154_frame_get_ie_field_len .text.ieee802154_frame_get_mic_len .text.ieee802154_frame_get_src_panid .text.ieee802154_frame_get_type .text.ieee802154_frame_get_version .text.ieee802154_frame_ie_header_offset .text.ieee802154_frame_is_ack_required) + *libieee802154.a:esp_ieee802154_pib.*(.text .text.ieee802154_pib_get_auto_ack_rx .text.ieee802154_pib_get_auto_ack_tx .text.ieee802154_pib_get_cca_mode .text.ieee802154_pib_get_cca_threshold .text.ieee802154_pib_get_channel .text.ieee802154_pib_get_coordinator .text.ieee802154_pib_get_enhance_ack_tx .text.ieee802154_pib_get_power .text.ieee802154_pib_get_promiscuous .text.ieee802154_pib_init .text.ieee802154_pib_is_pending .text.ieee802154_pib_set_auto_ack_rx .text.ieee802154_pib_set_auto_ack_tx .text.ieee802154_pib_set_cca_mode .text.ieee802154_pib_set_cca_threshold .text.ieee802154_pib_set_channel .text.ieee802154_pib_set_coordinator .text.ieee802154_pib_set_enhance_ack_tx .text.ieee802154_pib_set_pending_mode .text.ieee802154_pib_set_power .text.ieee802154_pib_set_promiscuous .text.ieee802154_pib_set_rx_when_idle .text.ieee802154_pib_update .text.ieee802154_txpower_convert) + *libieee802154.a:esp_ieee802154_sec.*(.text .text.ieee802154_ll_set_security_addr .text.ieee802154_ll_set_security_key) + *libieee802154.a:esp_ieee802154_timer.*(.text .text.ieee802154_timer0_get_value .text.ieee802154_timer1_get_value) + *libieee802154.a:esp_ieee802154_util.*(.text .text.ieee802154_channel_to_freq .text.ieee802154_etm_set_event_task .text.ieee802154_freq_to_channel .text.ieee802154_set_txrx_pti) + *liblog.a:log_timestamp.*(.text) + *liblog.a:log_write.*(.text .text.esp_log_set_vprintf .text.esp_log_writev) + *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) + *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) + *(.stub) + *(.gnu.linkonce.t.*) + *(.gnu.warning) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + /** + + * CPU will try to prefetch up to 16 bytes of of instructions. + + * This means that any configuration (e.g. MMU, PMS) must allow + + * safe access to up to 16 bytes after the last real instruction, add + + * dummy bytes to ensure this + + */ + . += 16; + _text_end = ABSOLUTE(.); + /** + + * Mark the flash.text end. + + * This can be used for MMU driver to maintain virtual address. + + */ + _instruction_reserved_end = ABSOLUTE(.); + _etext = .; + /** + + * Similar to _iram_start, this symbol goes here so it is + + * resolved by addr2line in preference to the first symbol in + + * the flash.text segment. + + */ + _flash_cache_start = ABSOLUTE(0); + } > default_code_seg + /** + + * Dummy section represents the .flash.text section but in default_rodata_seg. + + * Thus, it must have its alignment and (at least) its size. + + */ + .flash_rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = .; + . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); + /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ + . = ALIGN(0x8000) + 0x20; + } > default_rodata_seg + .flash.appdesc : ALIGN(0x10) + { + /** + + * Mark flash.rodata start. + + * This can be used for mmu driver to maintain virtual address + + */ + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + /* !DO NOT PUT ANYTHING BEFORE THIS! */ + /* Should be the first. App version info. */ + *(.rodata_desc .rodata_desc.*) + /* Should be the second. Custom app version info. */ + *(.rodata_custom_desc .rodata_custom_desc.*) + /** + + * Create an empty gap within this section. Thanks to this, the end of this + + * section will match .flash.rodata's begin address. Thus, both sections + + * will be merged when creating the final bin image. + + */ + . = ALIGN(ALIGNOF(.flash.rodata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + *(EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *liblog.a:log_lock.* *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) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + /** + + * C++ constructor tables. + + * + + * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. + + * + + * RISC-V gcc is configured with --enable-initfini-array so it emits + + * .init_array section instead. But the init_priority sections will be + + * sorted for iteration in ascending order during startup. + + * The rest of the init_array sections is sorted for iteration in descending + + * order during startup, however. Hence a different section is generated for + + * the init_priority functions which is iterated in ascending order during + + * startup. The corresponding code can be found in startup.c. + + */ + + . = ALIGN(4); + __init_priority_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) + __init_priority_array_end = ABSOLUTE(.); + + . = ALIGN(4); + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) + __init_array_end = ABSOLUTE(.); + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + + . = ALIGN(4); + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + /* System init functions registered via ESP_SYSTEM_INIT_FN */ + + . = ALIGN(4); + _esp_system_init_fn_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) + _esp_system_init_fn_array_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + . = ALIGN(ALIGNOF(.eh_frame_hdr)); + } > default_rodata_seg + ASSERT((ADDR(.eh_frame_hdr) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.") + .eh_frame_hdr : + { + . = ALIGN(ALIGNOF(.eh_frame)); + } > default_rodata_seg + ASSERT((ADDR(.eh_frame) == ADDR(.eh_frame_hdr) + SIZEOF(.eh_frame_hdr)), "The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.") + .eh_frame : + { + . = ALIGN(ALIGNOF(.flash.tdata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.tdata) == ADDR(.eh_frame) + SIZEOF(.eh_frame)), "The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.") + .flash.tdata : + { + _thread_local_data_start = ABSOLUTE(.); + *(.tdata .tdata.* .gnu.linkonce.td.*) + . = ALIGN(ALIGNOF(.flash.tbss)); + _thread_local_data_end = ABSOLUTE(.); + } > default_rodata_seg + ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") + .flash.tbss (NOLOAD) : + { + _thread_local_bss_start = ABSOLUTE(.); + *(.tbss .tbss.* .gnu.linkonce.tb.*) + *(.tcommon .tcommon.*) + _thread_local_bss_end = ABSOLUTE(.); + } > default_rodata_seg + /** + + * This section contains all the rodata that is not used + + * at runtime, helping to avoid an increase in binary size. + + */ + .flash.rodata_noload (NOLOAD) : + { + /** + + * This symbol marks the end of flash.rodata. It can be utilized by the MMU + + * driver to maintain the virtual address. + + * NOLOAD rodata may not be included in this section. + + */ + _rodata_reserved_end = ADDR(.flash.tbss); + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + } > default_rodata_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + + . = ALIGN(16); + _heap_start = ABSOLUTE(.); + } > sram_seg + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } + .riscv.attributes 0: { *(.riscv.attributes) } + /DISCARD/ : + { + /** + + * Discarding .rela.* sections results in the following mapping: + + * .rela.text.* -> .text.* + + * .rela.data.* -> .data.* + + * And so forth... + + */ + *(.rela.*) + *(.got .got.plt) /* TODO: GCC-382 */ + *(.eh_frame_hdr) + *(.eh_frame) + } +} diff --git a/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in b/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in new file mode 100644 index 0000000..6f55fb6 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in @@ -0,0 +1,566 @@ +/* + + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.4.0 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * PMP region granularity size + + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + + * the PMP granularity is 2^G+2 bytes. + + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* Default entry point */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /** + + * RTC fast memory holds RTC wake stub code, + + * including from any source file named rtc_wake_stub*.c + + */ + .rtc.text : + { + /* Align the start of RTC code region as per PMP granularity + + * this ensures we do not overwrite the permissions for the previous + + * region (ULP mem) regardless of its end alignment + + */ + + . = ALIGN(4); + _rtc_fast_start = ABSOLUTE(.); + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + *(.rtc.entry.text) + mapping[rtc_text] + *rtc_wake_stub*.*(.text .text.*) + *(.rtc_text_end_test) + /* Align the end of RTC code region as per PMP granularity */ + . = ALIGN(4); + _rtc_text_end = ABSOLUTE(.); + } > lp_ram_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(.); + } > lp_ram_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. + + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + mapping[rtc_data] + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) + _rtc_data_end = ABSOLUTE(.); + } > lp_ram_seg + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) + *rtc_wake_stub*.*(COMMON) + mapping[rtc_bss] + _rtc_bss_end = ABSOLUTE(.); + } > lp_ram_seg + /** + + * 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. + + */ + .rtc_noinit (NOLOAD): + { + + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + + . = ALIGN(4); + _rtc_noinit_end = ABSOLUTE(.); + } > lp_ram_seg + /** + + * 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(.); + } > lp_ram_seg + /** + + * This section holds RTC data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep + + * sleep. + + */ + .rtc_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_reserved_start = ABSOLUTE(.); + /** + + * New data can only be added here to ensure existing data are not moved. + + * Because data have adhered to the end of the segment and code is relied + + * on it. + + * >> put new data here << + + */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_reserved_end = ABSOLUTE(.); + } > rtc_reserved_seg + _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; + ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), + "RTC reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + .iram0.text : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to start of IRAM */ + ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); + KEEP(*(.exception_vectors_table.text)); + KEEP(*(.exception_vectors.text)); + + . = ALIGN(4); + _invalid_pc_placeholder = ABSOLUTE(.); + /* Code marked as running out of IRAM */ + _iram_text_start = ABSOLUTE(.); + mapping[iram0_text] + } > sram_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* Align the end of code region as per PMP region granularity */ + . = ALIGN(4); + + . = ALIGN(4); + _iram_text_end = ABSOLUTE(.); + } > sram_seg + .iram0.data : + { + + . = ALIGN(16); + _iram_data_start = ABSOLUTE(.); + mapping[iram0_data] + _iram_data_end = ABSOLUTE(.); + } > sram_seg + .iram0.bss (NOLOAD) : + { + + . = ALIGN(16); + _iram_bss_start = ABSOLUTE(.); + mapping[iram0_bss] + _iram_bss_end = ABSOLUTE(.); + + . = ALIGN(16); + _iram_end = ABSOLUTE(.); + } > sram_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + __global_pointer$ = . + 0x800; + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + mapping[dram0_data] + _data_end = ABSOLUTE(.); + } > sram_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(.); + } > sram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + + . = ALIGN(8); + _bss_start = ABSOLUTE(.); + /** + + * ldgen places all bss-related data to mapping[dram0_bss] + + * (See components/esp_system/app.lf). + + */ + mapping[dram0_bss] + + . = ALIGN(8); + _bss_end = ABSOLUTE(.); + } > sram_seg + .flash.text : + { + _stext = .; + /** + + * Mark the start of flash.text. + + * This can be used by the MMU driver to maintain the virtual address. + + */ + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + mapping[flash_text] + *(.stub) + *(.gnu.linkonce.t.*) + *(.gnu.warning) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + /** + + * CPU will try to prefetch up to 16 bytes of of instructions. + + * This means that any configuration (e.g. MMU, PMS) must allow + + * safe access to up to 16 bytes after the last real instruction, add + + * dummy bytes to ensure this + + */ + . += 16; + _text_end = ABSOLUTE(.); + /** + + * Mark the flash.text end. + + * This can be used for MMU driver to maintain virtual address. + + */ + _instruction_reserved_end = ABSOLUTE(.); + _etext = .; + /** + + * Similar to _iram_start, this symbol goes here so it is + + * resolved by addr2line in preference to the first symbol in + + * the flash.text segment. + + */ + _flash_cache_start = ABSOLUTE(0); + } > default_code_seg + /** + + * Dummy section represents the .flash.text section but in default_rodata_seg. + + * Thus, it must have its alignment and (at least) its size. + + */ + .flash_rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = .; + . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); + /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ + . = ALIGN(0x8000) + 0x20; + } > default_rodata_seg + .flash.appdesc : ALIGN(0x10) + { + /** + + * Mark flash.rodata start. + + * This can be used for mmu driver to maintain virtual address + + */ + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + /* !DO NOT PUT ANYTHING BEFORE THIS! */ + /* Should be the first. App version info. */ + *(.rodata_desc .rodata_desc.*) + /* Should be the second. Custom app version info. */ + *(.rodata_custom_desc .rodata_custom_desc.*) + /** + + * Create an empty gap within this section. Thanks to this, the end of this + + * section will match .flash.rodata's begin address. Thus, both sections + + * will be merged when creating the final bin image. + + */ + . = ALIGN(ALIGNOF(.flash.rodata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + mapping[flash_rodata] + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + /** + + * C++ constructor tables. + + * + + * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. + + * + + * RISC-V gcc is configured with --enable-initfini-array so it emits + + * .init_array section instead. But the init_priority sections will be + + * sorted for iteration in ascending order during startup. + + * The rest of the init_array sections is sorted for iteration in descending + + * order during startup, however. Hence a different section is generated for + + * the init_priority functions which is iterated in ascending order during + + * startup. The corresponding code can be found in startup.c. + + */ + + . = ALIGN(4); + __init_priority_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) + __init_priority_array_end = ABSOLUTE(.); + + . = ALIGN(4); + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) + __init_array_end = ABSOLUTE(.); + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + + . = ALIGN(4); + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + /* System init functions registered via ESP_SYSTEM_INIT_FN */ + + . = ALIGN(4); + _esp_system_init_fn_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) + _esp_system_init_fn_array_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + . = ALIGN(ALIGNOF(.eh_frame_hdr)); + } > default_rodata_seg + ASSERT((ADDR(.eh_frame_hdr) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.") + .eh_frame_hdr : + { + . = ALIGN(ALIGNOF(.eh_frame)); + } > default_rodata_seg + ASSERT((ADDR(.eh_frame) == ADDR(.eh_frame_hdr) + SIZEOF(.eh_frame_hdr)), "The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.") + .eh_frame : + { + . = ALIGN(ALIGNOF(.flash.tdata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.tdata) == ADDR(.eh_frame) + SIZEOF(.eh_frame)), "The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.") + .flash.tdata : + { + _thread_local_data_start = ABSOLUTE(.); + *(.tdata .tdata.* .gnu.linkonce.td.*) + . = ALIGN(ALIGNOF(.flash.tbss)); + _thread_local_data_end = ABSOLUTE(.); + } > default_rodata_seg + ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") + .flash.tbss (NOLOAD) : + { + _thread_local_bss_start = ABSOLUTE(.); + *(.tbss .tbss.* .gnu.linkonce.tb.*) + *(.tcommon .tcommon.*) + _thread_local_bss_end = ABSOLUTE(.); + } > default_rodata_seg + /** + + * This section contains all the rodata that is not used + + * at runtime, helping to avoid an increase in binary size. + + */ + .flash.rodata_noload (NOLOAD) : + { + /** + + * This symbol marks the end of flash.rodata. It can be utilized by the MMU + + * driver to maintain the virtual address. + + * NOLOAD rodata may not be included in this section. + + */ + _rodata_reserved_end = ADDR(.flash.tbss); + mapping[rodata_noload] + } > default_rodata_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + + . = ALIGN(16); + _heap_start = ABSOLUTE(.); + } > sram_seg + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } + .riscv.attributes 0: { *(.riscv.attributes) } + /DISCARD/ : + { + /** + + * Discarding .rela.* sections results in the following mapping: + + * .rela.text.* -> .text.* + + * .rela.data.* -> .data.* + + * And so forth... + + */ + *(.rela.*) + *(.got .got.plt) /* TODO: GCC-382 */ + *(.eh_frame_hdr) + *(.eh_frame) + } +} diff --git a/JoystickControlServo/build/esp-idf/esp_system/libesp_system.a b/JoystickControlServo/build/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..bb14177 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_system/libesp_system.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_system/port/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_system/port/cmake_install.cmake new file mode 100644 index 0000000..1674b33 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/cmake_install.cmake new file mode 100644 index 0000000..7da58ec --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_system/port/soc/esp32c6/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj new file mode 100644 index 0000000..1371e63 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj new file mode 100644 index 0000000..ee3e6de Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj new file mode 100644 index 0000000..a8e47db Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj new file mode 100644 index 0000000..ae42dce Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj new file mode 100644 index 0000000..22efdc0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..4c6196e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj new file mode 100644 index 0000000..b5db317 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_timer/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_timer/cmake_install.cmake new file mode 100644 index 0000000..a8ad2f4 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_timer/libesp_timer.a b/JoystickControlServo/build/esp-idf/esp_timer/libesp_timer.a new file mode 100644 index 0000000..44c29c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj b/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj new file mode 100644 index 0000000..a781fef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_vfs_console/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_vfs_console/cmake_install.cmake new file mode 100644 index 0000000..fc764c1 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_vfs_console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_vfs_console/libesp_vfs_console.a b/JoystickControlServo/build/esp-idf/esp_vfs_console/libesp_vfs_console.a new file mode 100644 index 0000000..0ec31c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_vfs_console/libesp_vfs_console.a differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c6/esp_adapter.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c6/esp_adapter.c.obj new file mode 100644 index 0000000..57faaa4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c6/esp_adapter.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..a1ef380 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj new file mode 100644 index 0000000..0593432 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj new file mode 100644 index 0000000..1db2c05 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj new file mode 100644 index 0000000..196907f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj new file mode 100644 index 0000000..5103ae8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj new file mode 100644 index 0000000..1aaf10b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj new file mode 100644 index 0000000..1172aa3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj new file mode 100644 index 0000000..324828b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esp_wifi/cmake_install.cmake new file mode 100644 index 0000000..91f906c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esp_wifi/libesp_wifi.a b/JoystickControlServo/build/esp-idf/esp_wifi/libesp_wifi.a new file mode 100644 index 0000000..12c5b96 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/esp_wifi/libesp_wifi.a differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj new file mode 100644 index 0000000..a030b17 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj new file mode 100644 index 0000000..88a8ac2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj new file mode 100644 index 0000000..707a4f1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj new file mode 100644 index 0000000..9dc00d4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj new file mode 100644 index 0000000..6249b02 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj new file mode 100644 index 0000000..a0a61bd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj new file mode 100644 index 0000000..f9da1f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj new file mode 100644 index 0000000..02cb7d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj new file mode 100644 index 0000000..98e3140 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/espcoredump/cmake_install.cmake b/JoystickControlServo/build/esp-idf/espcoredump/cmake_install.cmake new file mode 100644 index 0000000..310e28c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/espcoredump/libespcoredump.a b/JoystickControlServo/build/esp-idf/espcoredump/libespcoredump.a new file mode 100644 index 0000000..f4f9d23 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/espcoredump/libespcoredump.a differ diff --git a/JoystickControlServo/build/esp-idf/esptool_py/app-flash_args.in b/JoystickControlServo/build/esp-idf/esptool_py/app-flash_args.in new file mode 100644 index 0000000..b3f3b57 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 $.bin \ No newline at end of file diff --git a/JoystickControlServo/build/esp-idf/esptool_py/cmake_install.cmake b/JoystickControlServo/build/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..5516e7c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/esptool_py/flasher_args.json.in b/JoystickControlServo/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..fee9d0b --- /dev/null +++ b/JoystickControlServo/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "$.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "$.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32c6" + } +} diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj new file mode 100644 index 0000000..acd6b1b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj new file mode 100644 index 0000000..f40e382 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj new file mode 100644 index 0000000..9ae6a2f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj new file mode 100644 index 0000000..f6da23e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj new file mode 100644 index 0000000..b8706a9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj new file mode 100644 index 0000000..edbeffd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj new file mode 100644 index 0000000..f307ec9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj new file mode 100644 index 0000000..acd50f3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj new file mode 100644 index 0000000..84ed19c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj new file mode 100644 index 0000000..c52a346 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/fatfs/cmake_install.cmake b/JoystickControlServo/build/esp-idf/fatfs/cmake_install.cmake new file mode 100644 index 0000000..7fb006e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/fatfs/libfatfs.a b/JoystickControlServo/build/esp-idf/fatfs/libfatfs.a new file mode 100644 index 0000000..b93edcb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/fatfs/libfatfs.a differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj new file mode 100644 index 0000000..82bae46 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj new file mode 100644 index 0000000..60e00d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj new file mode 100644 index 0000000..e0f485c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj new file mode 100644 index 0000000..adefcb9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj new file mode 100644 index 0000000..b7d740d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj new file mode 100644 index 0000000..3423981 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj new file mode 100644 index 0000000..56e0b66 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj new file mode 100644 index 0000000..f0df384 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj new file mode 100644 index 0000000..1cb71ea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj new file mode 100644 index 0000000..5e6c927 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj new file mode 100644 index 0000000..1978480 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj new file mode 100644 index 0000000..0e3061d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj new file mode 100644 index 0000000..984adee Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj new file mode 100644 index 0000000..a861b9b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj new file mode 100644 index 0000000..d1350e2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/freertos/cmake_install.cmake b/JoystickControlServo/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..dabe479 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/freertos/libfreertos.a b/JoystickControlServo/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..4fc3661 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/freertos/libfreertos.a differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj new file mode 100644 index 0000000..dafd7d3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..5649ed8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..72f8a22 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj new file mode 100644 index 0000000..ff5c071 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj new file mode 100644 index 0000000..314ccb3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj new file mode 100644 index 0000000..af786b4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..544eb44 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj new file mode 100644 index 0000000..fb0d582 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj new file mode 100644 index 0000000..c8e0e0f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj new file mode 100644 index 0000000..8fe16bf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..e7b4505 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/clk_tree_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/clk_tree_hal.c.obj new file mode 100644 index 0000000..0daecbc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/clk_tree_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj new file mode 100644 index 0000000..2ac2cd0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/efuse_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/modem_clock_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/modem_clock_hal.c.obj new file mode 100644 index 0000000..370b64a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/modem_clock_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj new file mode 100644 index 0000000..b06695a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pau_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj new file mode 100644 index 0000000..24c39b5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c6/pmu_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj new file mode 100644 index 0000000..2d5ba7a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj new file mode 100644 index 0000000..5c4cdea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj new file mode 100644 index 0000000..ca36ff8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj new file mode 100644 index 0000000..557a927 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..73d9e16 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj new file mode 100644 index 0000000..cca2222 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj new file mode 100644 index 0000000..cca0394 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj new file mode 100644 index 0000000..59f9f14 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj new file mode 100644 index 0000000..f8090b9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj new file mode 100644 index 0000000..58067c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj new file mode 100644 index 0000000..897108d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj new file mode 100644 index 0000000..939b356 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj new file mode 100644 index 0000000..dd8d355 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..0ad766c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj new file mode 100644 index 0000000..a90c1c1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj new file mode 100644 index 0000000..3cd6631 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj new file mode 100644 index 0000000..e888ad8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj new file mode 100644 index 0000000..c712fdd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..97a890d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj new file mode 100644 index 0000000..c66f00a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj new file mode 100644 index 0000000..bcf2cf7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj new file mode 100644 index 0000000..ef68f94 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..e52d53a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj new file mode 100644 index 0000000..b7cdb89 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj new file mode 100644 index 0000000..7f35aa4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..a59b935 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj new file mode 100644 index 0000000..7c39ea7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..9c16772 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..18ef366 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..7bb308b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj new file mode 100644 index 0000000..f34d0b5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj new file mode 100644 index 0000000..232b58f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj new file mode 100644 index 0000000..30ec2a4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj new file mode 100644 index 0000000..b63684e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj new file mode 100644 index 0000000..9ec3b0d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..5eac88f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj new file mode 100644 index 0000000..067f250 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/hal/cmake_install.cmake b/JoystickControlServo/build/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..7b65cc8 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/hal/libhal.a b/JoystickControlServo/build/esp-idf/hal/libhal.a new file mode 100644 index 0000000..96aeb04 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/hal/libhal.a differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj new file mode 100644 index 0000000..36e914b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj new file mode 100644 index 0000000..b09105b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..773b2c0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj new file mode 100644 index 0000000..25e9635 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj new file mode 100644 index 0000000..9083389 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c6/memory_layout.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj new file mode 100644 index 0000000..361de54 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/heap/cmake_install.cmake b/JoystickControlServo/build/esp-idf/heap/cmake_install.cmake new file mode 100644 index 0000000..69ddfa2 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/heap/libheap.a b/JoystickControlServo/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..944e560 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/heap/libheap.a differ diff --git a/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj new file mode 100644 index 0000000..7cf75ab Binary files /dev/null and b/JoystickControlServo/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/http_parser/cmake_install.cmake b/JoystickControlServo/build/esp-idf/http_parser/cmake_install.cmake new file mode 100644 index 0000000..261c992 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/http_parser/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/http_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/http_parser/libhttp_parser.a b/JoystickControlServo/build/esp-idf/http_parser/libhttp_parser.a new file mode 100644 index 0000000..6761680 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/http_parser/libhttp_parser.a differ diff --git a/JoystickControlServo/build/esp-idf/idf_test/cmake_install.cmake b/JoystickControlServo/build/esp-idf/idf_test/cmake_install.cmake new file mode 100644 index 0000000..66f02b7 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj new file mode 100644 index 0000000..712dfbd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj new file mode 100644 index 0000000..1decd78 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj new file mode 100644 index 0000000..b1027ae Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj new file mode 100644 index 0000000..343c94a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj new file mode 100644 index 0000000..adf00c0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj new file mode 100644 index 0000000..d2ca107 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj new file mode 100644 index 0000000..5f28b8a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj new file mode 100644 index 0000000..9bf1a9b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/ieee802154/cmake_install.cmake b/JoystickControlServo/build/esp-idf/ieee802154/cmake_install.cmake new file mode 100644 index 0000000..706f690 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/ieee802154/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/ieee802154/libieee802154.a b/JoystickControlServo/build/esp-idf/ieee802154/libieee802154.a new file mode 100644 index 0000000..7a823dd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/ieee802154/libieee802154.a differ diff --git a/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj b/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj new file mode 100644 index 0000000..e185f16 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj b/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj new file mode 100644 index 0000000..964351f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/json/cmake_install.cmake b/JoystickControlServo/build/esp-idf/json/cmake_install.cmake new file mode 100644 index 0000000..f65dbad --- /dev/null +++ b/JoystickControlServo/build/esp-idf/json/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/json + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/json/libjson.a b/JoystickControlServo/build/esp-idf/json/libjson.a new file mode 100644 index 0000000..8c709a6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/json/libjson.a differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj new file mode 100644 index 0000000..465ae91 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj new file mode 100644 index 0000000..9c53299 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj new file mode 100644 index 0000000..b255737 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj new file mode 100644 index 0000000..469354a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj new file mode 100644 index 0000000..62d6999 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj new file mode 100644 index 0000000..c219a21 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj new file mode 100644 index 0000000..a00a727 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj new file mode 100644 index 0000000..e5ed89e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj new file mode 100644 index 0000000..31d6001 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj new file mode 100644 index 0000000..636b596 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/log/cmake_install.cmake b/JoystickControlServo/build/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..82444cc --- /dev/null +++ b/JoystickControlServo/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/log/liblog.a b/JoystickControlServo/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..668aff6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/log/liblog.a differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj new file mode 100644 index 0000000..01fa65a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj new file mode 100644 index 0000000..481cbd9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj new file mode 100644 index 0000000..511d6c0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj new file mode 100644 index 0000000..fefce4c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..a28a8b9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj new file mode 100644 index 0000000..8d4f30b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj new file mode 100644 index 0000000..6c8d272 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj new file mode 100644 index 0000000..d832010 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj new file mode 100644 index 0000000..68a58df Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj new file mode 100644 index 0000000..e002978 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj new file mode 100644 index 0000000..7860487 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj new file mode 100644 index 0000000..0886320 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj new file mode 100644 index 0000000..78a9326 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj new file mode 100644 index 0000000..34e9071 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj new file mode 100644 index 0000000..537201a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..2b0c451 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj new file mode 100644 index 0000000..3b1cc37 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj new file mode 100644 index 0000000..a0ad385 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj new file mode 100644 index 0000000..2f5eec2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj new file mode 100644 index 0000000..215a0d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj new file mode 100644 index 0000000..f6c81e7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj new file mode 100644 index 0000000..78160f4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj new file mode 100644 index 0000000..b3a9284 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj new file mode 100644 index 0000000..5461224 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj new file mode 100644 index 0000000..90645f5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj new file mode 100644 index 0000000..daccf6a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj new file mode 100644 index 0000000..94d92c8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj new file mode 100644 index 0000000..77282fc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj new file mode 100644 index 0000000..4a7a04d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj new file mode 100644 index 0000000..e5a081e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj new file mode 100644 index 0000000..040a541 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj new file mode 100644 index 0000000..05d38ed Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj new file mode 100644 index 0000000..09d2503 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj new file mode 100644 index 0000000..55eb9d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj new file mode 100644 index 0000000..b1c828c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj new file mode 100644 index 0000000..6b95dab Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj new file mode 100644 index 0000000..8d07ba8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj new file mode 100644 index 0000000..80aca30 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj new file mode 100644 index 0000000..66d2f51 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj new file mode 100644 index 0000000..dd1f501 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj new file mode 100644 index 0000000..6764215 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj new file mode 100644 index 0000000..d3f4368 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj new file mode 100644 index 0000000..44762ea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj new file mode 100644 index 0000000..b396ef0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj new file mode 100644 index 0000000..f41906b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj new file mode 100644 index 0000000..cb4b461 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj new file mode 100644 index 0000000..fb24a25 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj new file mode 100644 index 0000000..a60587f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj new file mode 100644 index 0000000..3c968e2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj new file mode 100644 index 0000000..c24a9ff Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj new file mode 100644 index 0000000..8a0e21f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj new file mode 100644 index 0000000..1dc4300 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj new file mode 100644 index 0000000..a83b30d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj new file mode 100644 index 0000000..0887f17 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj new file mode 100644 index 0000000..f21c072 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj new file mode 100644 index 0000000..d4503a8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj new file mode 100644 index 0000000..cc6dc95 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj new file mode 100644 index 0000000..b47c357 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj new file mode 100644 index 0000000..1c1b234 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj new file mode 100644 index 0000000..2c7ee72 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj new file mode 100644 index 0000000..4e15439 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj new file mode 100644 index 0000000..3f116da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj new file mode 100644 index 0000000..4cd1cec Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj new file mode 100644 index 0000000..4320cc4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj new file mode 100644 index 0000000..12ac0f9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj new file mode 100644 index 0000000..b0d3752 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj new file mode 100644 index 0000000..b545acc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj new file mode 100644 index 0000000..2f7f415 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj new file mode 100644 index 0000000..c3b23da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj new file mode 100644 index 0000000..8fe7441 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj new file mode 100644 index 0000000..c958048 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj new file mode 100644 index 0000000..d7f3dcc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj new file mode 100644 index 0000000..a83818b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj new file mode 100644 index 0000000..6fef419 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj new file mode 100644 index 0000000..5af655e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj new file mode 100644 index 0000000..37cc1a2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj new file mode 100644 index 0000000..d2adb6d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj new file mode 100644 index 0000000..392b929 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj new file mode 100644 index 0000000..71bcff1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj new file mode 100644 index 0000000..0198495 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj new file mode 100644 index 0000000..52336ef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj new file mode 100644 index 0000000..0ad80b1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj new file mode 100644 index 0000000..a00e79a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj new file mode 100644 index 0000000..91c5ff6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj new file mode 100644 index 0000000..354044a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj new file mode 100644 index 0000000..71f0c4b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj new file mode 100644 index 0000000..30a86b6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj new file mode 100644 index 0000000..e8af498 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj new file mode 100644 index 0000000..3d06490 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj new file mode 100644 index 0000000..c11cd7a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj new file mode 100644 index 0000000..af6a159 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj new file mode 100644 index 0000000..ea041ef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/lwip/cmake_install.cmake b/JoystickControlServo/build/esp-idf/lwip/cmake_install.cmake new file mode 100644 index 0000000..e5c12b6 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/lwip/liblwip.a b/JoystickControlServo/build/esp-idf/lwip/liblwip.a new file mode 100644 index 0000000..63847d5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/lwip/liblwip.a differ diff --git a/JoystickControlServo/build/esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj b/JoystickControlServo/build/esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj new file mode 100644 index 0000000..fa6a9b5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/main/CMakeFiles/__idf_main.dir/Main.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/main/cmake_install.cmake b/JoystickControlServo/build/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..771a1d0 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/main/libmain.a b/JoystickControlServo/build/esp-idf/main/libmain.a new file mode 100644 index 0000000..56b1f78 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/main/libmain.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj new file mode 100644 index 0000000..e63d6bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj new file mode 100644 index 0000000..59217ef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..09da285 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/libmbedtls.a b/JoystickControlServo/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..391daea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake new file mode 100644 index 0000000..121e8b3 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") + +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj new file mode 100644 index 0000000..bcbe081 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj new file mode 100644 index 0000000..da99b0e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj new file mode 100644 index 0000000..bd929f0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake new file mode 100644 index 0000000..0d95a91 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/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)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a new file mode 100644 index 0000000..3dd738a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj new file mode 100644 index 0000000..da3955e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj new file mode 100644 index 0000000..c6ee5bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake new file mode 100644 index 0000000..eb73d7c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/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)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a new file mode 100644 index 0000000..12ad24d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..3ad94d2 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,48 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") + +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake new file mode 100644 index 0000000..b7e20aa --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,146 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_dependencies.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" + "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" + ) +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj new file mode 100644 index 0000000..9ef3d72 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj new file mode 100644 index 0000000..91d73d9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj new file mode 100644 index 0000000..73b4cb5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..e4f2dc8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..bde5a8b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..8f64863 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj new file mode 100644 index 0000000..9191c03 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj new file mode 100644 index 0000000..9eafd54 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj new file mode 100644 index 0000000..d755d37 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj new file mode 100644 index 0000000..4409ba3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj new file mode 100644 index 0000000..4ace87a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj new file mode 100644 index 0000000..6d53a3d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..52cfec5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..8f967a5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_mem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..2ed7f4f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_timing.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj new file mode 100644 index 0000000..be701bd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/md/esp_md.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj new file mode 100644 index 0000000..b82599f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj new file mode 100644 index 0000000..e607fbf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj new file mode 100644 index 0000000..2329beb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj new file mode 100644 index 0000000..f6ff7e4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj new file mode 100644 index 0000000..4864953 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..5573487 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj new file mode 100644 index 0000000..084f914 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj new file mode 100644 index 0000000..79f73c8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj new file mode 100644 index 0000000..6c7c10d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj new file mode 100644 index 0000000..54088a1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj new file mode 100644 index 0000000..39f9d8a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj new file mode 100644 index 0000000..9e94035 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj new file mode 100644 index 0000000..f06fda8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj new file mode 100644 index 0000000..764f651 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj new file mode 100644 index 0000000..792b34f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj new file mode 100644 index 0000000..6d27e25 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj new file mode 100644 index 0000000..1069789 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj new file mode 100644 index 0000000..ae40f47 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..a2c6d34 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj new file mode 100644 index 0000000..0ff62b8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj new file mode 100644 index 0000000..6581fbd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj new file mode 100644 index 0000000..ef53569 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj new file mode 100644 index 0000000..8ff7687 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj new file mode 100644 index 0000000..2edf048 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj new file mode 100644 index 0000000..8fccdd3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj new file mode 100644 index 0000000..7c8adb2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj new file mode 100644 index 0000000..e729ae6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj new file mode 100644 index 0000000..2ac953c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj new file mode 100644 index 0000000..daf3fdf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj new file mode 100644 index 0000000..3c9ac0e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj new file mode 100644 index 0000000..85d95ef Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj new file mode 100644 index 0000000..11b70d4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj new file mode 100644 index 0000000..0e2c337 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj new file mode 100644 index 0000000..e3ca3d9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj new file mode 100644 index 0000000..910f7a4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..9f48f63 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj new file mode 100644 index 0000000..05659a8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj new file mode 100644 index 0000000..4547d92 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj new file mode 100644 index 0000000..3d3b748 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj new file mode 100644 index 0000000..1e700e0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj new file mode 100644 index 0000000..1d67a99 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj new file mode 100644 index 0000000..8d4bee1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj new file mode 100644 index 0000000..db1b5fa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj new file mode 100644 index 0000000..19eabd5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj new file mode 100644 index 0000000..770d3da Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..23d9415 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj new file mode 100644 index 0000000..56fcc40 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj new file mode 100644 index 0000000..d94b114 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj new file mode 100644 index 0000000..a612684 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj new file mode 100644 index 0000000..7fc3f0f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj new file mode 100644 index 0000000..7eb75f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj new file mode 100644 index 0000000..08f0a19 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..bba6d68 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj new file mode 100644 index 0000000..36f3d77 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj new file mode 100644 index 0000000..0a7d35b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj new file mode 100644 index 0000000..f06f02f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj new file mode 100644 index 0000000..6cf143a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj new file mode 100644 index 0000000..b9b5fea Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj new file mode 100644 index 0000000..ae57d3c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj new file mode 100644 index 0000000..0d2b3f6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj new file mode 100644 index 0000000..864ec91 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj new file mode 100644 index 0000000..9af7d2d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj new file mode 100644 index 0000000..a38942e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj new file mode 100644 index 0000000..2c5dc3e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj new file mode 100644 index 0000000..78553c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj new file mode 100644 index 0000000..c77aead Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj new file mode 100644 index 0000000..9a31583 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj new file mode 100644 index 0000000..a60ad35 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj new file mode 100644 index 0000000..21eaa1d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj new file mode 100644 index 0000000..4eb8fe8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj new file mode 100644 index 0000000..94e237b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj new file mode 100644 index 0000000..658c1d4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj new file mode 100644 index 0000000..5bbeadc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj new file mode 100644 index 0000000..4bdc6c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj new file mode 100644 index 0000000..221457d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj new file mode 100644 index 0000000..4e2ca6d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj new file mode 100644 index 0000000..4d5f79b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj new file mode 100644 index 0000000..cb24094 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj new file mode 100644 index 0000000..d0ea673 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj new file mode 100644 index 0000000..a7c1d8b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj new file mode 100644 index 0000000..c268069 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj new file mode 100644 index 0000000..1304a29 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..6ff3e5b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj new file mode 100644 index 0000000..648c95d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj new file mode 100644 index 0000000..371681e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj new file mode 100644 index 0000000..546ed85 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj new file mode 100644 index 0000000..1645ba1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj new file mode 100644 index 0000000..f432ff8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/esp_platform_time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..22739d8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj new file mode 100644 index 0000000..5f44d81 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/famil/esp/v5.4/esp-idf/components/mbedtls/port/net_sockets.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj new file mode 100644 index 0000000..41ec026 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj new file mode 100644 index 0000000..8abe41b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj new file mode 100644 index 0000000..15d10ca Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj new file mode 100644 index 0000000..a3d71f3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj new file mode 100644 index 0000000..d76c1cb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj new file mode 100644 index 0000000..98dcc7e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj new file mode 100644 index 0000000..accef42 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj new file mode 100644 index 0000000..321810c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj new file mode 100644 index 0000000..dd8e9a7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj new file mode 100644 index 0000000..e021a7e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj new file mode 100644 index 0000000..b6e455a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj new file mode 100644 index 0000000..d0a8c0d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj new file mode 100644 index 0000000..00895b1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj new file mode 100644 index 0000000..32fde60 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj new file mode 100644 index 0000000..633dbb2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj new file mode 100644 index 0000000..c43c8c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj new file mode 100644 index 0000000..dd3034d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj new file mode 100644 index 0000000..f69cab4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj new file mode 100644 index 0000000..3742956 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj new file mode 100644 index 0000000..0aec98a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj new file mode 100644 index 0000000..d49e216 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj new file mode 100644 index 0000000..6ff13a0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj new file mode 100644 index 0000000..b636ccb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj new file mode 100644 index 0000000..3f794d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..0b7e823 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj new file mode 100644 index 0000000..4254362 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake new file mode 100644 index 0000000..32a33ea --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/error.c b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/error.c new file mode 100644 index 0000000..6ad7162 --- /dev/null +++ b/JoystickControlServo/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 - A TLS 1.3 NewSessionTicket message has been received" ); + case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): + return( "SSL - Not possible to read early data" ); + case -(MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA): + return( "SSL - * Early data has been received as part of an on-going handshake. This error code can be returned only on server side if and only if early data has been enabled by means of the mbedtls_ssl_conf_early_data() API. This error code can then be returned by mbedtls_ssl_handshake(), mbedtls_ssl_handshake_step(), mbedtls_ssl_read() or mbedtls_ssl_write() if early data has been received as part of the handshake sequence they triggered. To read the early data, call mbedtls_ssl_read_early_data()" ); + case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA): + return( "SSL - Not possible to write early data" ); + case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND): + return( "SSL - Cache entry not found" ); + case -(MBEDTLS_ERR_SSL_ALLOC_FAILED): + return( "SSL - Memory allocation failed" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED): + return( "SSL - Hardware acceleration function returned with error" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH): + return( "SSL - Hardware acceleration function skipped / left alone data" ); + case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION): + return( "SSL - Handshake protocol not within min/max boundaries" ); + case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE): + return( "SSL - The handshake negotiation failed" ); + case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED): + return( "SSL - Session ticket has expired" ); + case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH): + return( "SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)" ); + case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY): + return( "SSL - Unknown identity received (eg, PSK identity)" ); + case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR): + return( "SSL - Internal error (eg, unexpected failure in lower-level module)" ); + case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING): + return( "SSL - A counter would wrap (eg, too many messages exchanged)" ); + case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO): + return( "SSL - Unexpected message at ServerHello in renegotiation" ); + case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED): + return( "SSL - DTLS client must retry for hello verification" ); + case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL): + return( "SSL - A buffer is too small to receive or write a message" ); + case -(MBEDTLS_ERR_SSL_WANT_READ): + return( "SSL - No data of requested type currently available on underlying transport" ); + case -(MBEDTLS_ERR_SSL_WANT_WRITE): + return( "SSL - Connection requires a write call" ); + case -(MBEDTLS_ERR_SSL_TIMEOUT): + return( "SSL - The operation timed out" ); + case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT): + return( "SSL - The client initiated a reconnect from the same port" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD): + return( "SSL - Record header looks valid but is not expected" ); + case -(MBEDTLS_ERR_SSL_NON_FATAL): + return( "SSL - The alert message received indicates a non-fatal error" ); + case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER): + return( "SSL - A field in a message was incorrect or inconsistent with other fields" ); + case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING): + return( "SSL - Internal-only message signaling that further message-processing should be done" ); + case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS): + return( "SSL - The asynchronous operation is not completed yet" ); + case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE): + return( "SSL - Internal-only message signaling that a message arrived early" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID): + return( "SSL - An encrypted DTLS-frame with an unexpected CID was received" ); + case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH): + return( "SSL - An operation failed due to an unexpected version or configuration" ); + case -(MBEDTLS_ERR_SSL_BAD_CONFIG): + return( "SSL - Invalid value in SSL config" ); +#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/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a new file mode 100644 index 0000000..d224dda Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a new file mode 100644 index 0000000..b535a92 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a new file mode 100644 index 0000000..64d96c2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c new file mode 100644 index 0000000..de8a526 --- /dev/null +++ b/JoystickControlServo/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/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c new file mode 100644 index 0000000..734c417 --- /dev/null +++ b/JoystickControlServo/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 "UNKNOWN"; +} +const char *mbedtls_ssl_sig_alg_to_str( uint16_t in ) +{ + switch( in ) + { + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256: + return "rsa_pkcs1_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384: + return "rsa_pkcs1_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512: + return "rsa_pkcs1_sha512"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256: + return "ecdsa_secp256r1_sha256"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384: + return "ecdsa_secp384r1_sha384"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512: + return "ecdsa_secp521r1_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256: + return "rsa_pss_rsae_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384: + return "rsa_pss_rsae_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512: + return "rsa_pss_rsae_sha512"; + case MBEDTLS_TLS1_3_SIG_ED25519: + return "ed25519"; + case MBEDTLS_TLS1_3_SIG_ED448: + return "ed448"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA256: + return "rsa_pss_pss_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA384: + return "rsa_pss_pss_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA512: + return "rsa_pss_pss_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA1: + return "rsa_pkcs1_sha1"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SHA1: + return "ecdsa_sha1"; + case MBEDTLS_TLS1_3_SIG_NONE: + return "none"; + }; + + return "UNKNOWN"; +} +const char *mbedtls_ssl_states_str( mbedtls_ssl_states in ) +{ + switch (in) { + case MBEDTLS_SSL_HELLO_REQUEST: + return "MBEDTLS_SSL_HELLO_REQUEST"; + case MBEDTLS_SSL_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_HELLO"; + case MBEDTLS_SSL_SERVER_CERTIFICATE: + return "MBEDTLS_SSL_SERVER_CERTIFICATE"; + case MBEDTLS_SSL_SERVER_KEY_EXCHANGE: + return "MBEDTLS_SSL_SERVER_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_REQUEST: + return "MBEDTLS_SSL_CERTIFICATE_REQUEST"; + case MBEDTLS_SSL_SERVER_HELLO_DONE: + return "MBEDTLS_SSL_SERVER_HELLO_DONE"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE"; + case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE: + return "MBEDTLS_SSL_CLIENT_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_CLIENT_FINISHED: + return "MBEDTLS_SSL_CLIENT_FINISHED"; + case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_SERVER_FINISHED: + return "MBEDTLS_SSL_SERVER_FINISHED"; + case MBEDTLS_SSL_FLUSH_BUFFERS: + return "MBEDTLS_SSL_FLUSH_BUFFERS"; + case MBEDTLS_SSL_HANDSHAKE_WRAPUP: + return "MBEDTLS_SSL_HANDSHAKE_WRAPUP"; + case MBEDTLS_SSL_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT: + return "MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT"; + case MBEDTLS_SSL_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_ENCRYPTED_EXTENSIONS: + return "MBEDTLS_SSL_ENCRYPTED_EXTENSIONS"; + case MBEDTLS_SSL_END_OF_EARLY_DATA: + return "MBEDTLS_SSL_END_OF_EARLY_DATA"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED"; + case MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_HANDSHAKE_OVER: + return "MBEDTLS_SSL_HANDSHAKE_OVER"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH"; + default: + return "UNKNOWN_VALUE"; + } +} + +#if defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) +const char *mbedtls_ssl_early_data_status_str( mbedtls_ssl_early_data_status in ) +{ + switch (in) { + case MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED"; + default: + return "UNKNOWN_VALUE"; + } +} + +#endif /* defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) */ +const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in ) +{ + switch (in) { + case MBEDTLS_SSL_VERSION_UNKNOWN: + return "MBEDTLS_SSL_VERSION_UNKNOWN"; + case MBEDTLS_SSL_VERSION_TLS1_2: + return "MBEDTLS_SSL_VERSION_TLS1_2"; + case MBEDTLS_SSL_VERSION_TLS1_3: + return "MBEDTLS_SSL_VERSION_TLS1_3"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in ) +{ + switch (in) { + case MBEDTLS_SSL_TLS_PRF_NONE: + return "MBEDTLS_SSL_TLS_PRF_NONE"; + case MBEDTLS_SSL_TLS_PRF_SHA384: + return "MBEDTLS_SSL_TLS_PRF_SHA384"; + case MBEDTLS_SSL_TLS_PRF_SHA256: + return "MBEDTLS_SSL_TLS_PRF_SHA256"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA384: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA384"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA256: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA256"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in ) +{ + switch (in) { + case MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET"; +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET"; +#endif + default: + return "UNKNOWN_VALUE"; + } +} + + + +#endif /* MBEDTLS_DEBUG_C */ +/* End of automatically generated file. */ + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/version_features.c new file mode 100644 index 0000000..f542d98 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/library/version_features.c @@ -0,0 +1,844 @@ +/* + * Version feature information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + +#include "common.h" + +#if defined(MBEDTLS_VERSION_C) + +#include "mbedtls/version.h" + +#include + +static const char * const features[] = { +#if defined(MBEDTLS_VERSION_FEATURES) + #if defined(MBEDTLS_HAVE_ASM) + "HAVE_ASM", //no-check-names +#endif /* MBEDTLS_HAVE_ASM */ +#if defined(MBEDTLS_NO_UDBL_DIVISION) + "NO_UDBL_DIVISION", //no-check-names +#endif /* MBEDTLS_NO_UDBL_DIVISION */ +#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION) + "NO_64BIT_MULTIPLICATION", //no-check-names +#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */ +#if defined(MBEDTLS_HAVE_SSE2) + "HAVE_SSE2", //no-check-names +#endif /* MBEDTLS_HAVE_SSE2 */ +#if defined(MBEDTLS_HAVE_TIME) + "HAVE_TIME", //no-check-names +#endif /* MBEDTLS_HAVE_TIME */ +#if defined(MBEDTLS_HAVE_TIME_DATE) + "HAVE_TIME_DATE", //no-check-names +#endif /* MBEDTLS_HAVE_TIME_DATE */ +#if defined(MBEDTLS_PLATFORM_MEMORY) + "PLATFORM_MEMORY", //no-check-names +#endif /* MBEDTLS_PLATFORM_MEMORY */ +#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) + "PLATFORM_NO_STD_FUNCTIONS", //no-check-names +#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */ +#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) + "PLATFORM_SETBUF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */ +#if defined(MBEDTLS_PLATFORM_EXIT_ALT) + "PLATFORM_EXIT_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_EXIT_ALT */ +#if defined(MBEDTLS_PLATFORM_TIME_ALT) + "PLATFORM_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) + "PLATFORM_FPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) + "PLATFORM_PRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) + "PLATFORM_SNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) + "PLATFORM_VSNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) + "PLATFORM_NV_SEED_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */ +#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT) + "PLATFORM_SETUP_TEARDOWN_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */ +#if defined(MBEDTLS_PLATFORM_MS_TIME_ALT) + "PLATFORM_MS_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_MS_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_GMTIME_R_ALT) + "PLATFORM_GMTIME_R_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_GMTIME_R_ALT */ +#if defined(MBEDTLS_PLATFORM_ZEROIZE_ALT) + "PLATFORM_ZEROIZE_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */ +#if defined(MBEDTLS_DEPRECATED_WARNING) + "DEPRECATED_WARNING", //no-check-names +#endif /* MBEDTLS_DEPRECATED_WARNING */ +#if defined(MBEDTLS_DEPRECATED_REMOVED) + "DEPRECATED_REMOVED", //no-check-names +#endif /* MBEDTLS_DEPRECATED_REMOVED */ +#if defined(MBEDTLS_TIMING_ALT) + "TIMING_ALT", //no-check-names +#endif /* MBEDTLS_TIMING_ALT */ +#if defined(MBEDTLS_AES_ALT) + "AES_ALT", //no-check-names +#endif /* MBEDTLS_AES_ALT */ +#if defined(MBEDTLS_ARIA_ALT) + "ARIA_ALT", //no-check-names +#endif /* MBEDTLS_ARIA_ALT */ +#if defined(MBEDTLS_CAMELLIA_ALT) + "CAMELLIA_ALT", //no-check-names +#endif /* MBEDTLS_CAMELLIA_ALT */ +#if defined(MBEDTLS_CCM_ALT) + "CCM_ALT", //no-check-names +#endif /* MBEDTLS_CCM_ALT */ +#if defined(MBEDTLS_CHACHA20_ALT) + "CHACHA20_ALT", //no-check-names +#endif /* MBEDTLS_CHACHA20_ALT */ +#if defined(MBEDTLS_CHACHAPOLY_ALT) + "CHACHAPOLY_ALT", //no-check-names +#endif /* MBEDTLS_CHACHAPOLY_ALT */ +#if defined(MBEDTLS_CMAC_ALT) + "CMAC_ALT", //no-check-names +#endif /* MBEDTLS_CMAC_ALT */ +#if defined(MBEDTLS_DES_ALT) + "DES_ALT", //no-check-names +#endif /* MBEDTLS_DES_ALT */ +#if defined(MBEDTLS_DHM_ALT) + "DHM_ALT", //no-check-names +#endif /* MBEDTLS_DHM_ALT */ +#if defined(MBEDTLS_ECJPAKE_ALT) + "ECJPAKE_ALT", //no-check-names +#endif /* MBEDTLS_ECJPAKE_ALT */ +#if defined(MBEDTLS_GCM_ALT) + "GCM_ALT", //no-check-names +#endif /* MBEDTLS_GCM_ALT */ +#if defined(MBEDTLS_NIST_KW_ALT) + "NIST_KW_ALT", //no-check-names +#endif /* MBEDTLS_NIST_KW_ALT */ +#if defined(MBEDTLS_MD5_ALT) + "MD5_ALT", //no-check-names +#endif /* MBEDTLS_MD5_ALT */ +#if defined(MBEDTLS_POLY1305_ALT) + "POLY1305_ALT", //no-check-names +#endif /* MBEDTLS_POLY1305_ALT */ +#if defined(MBEDTLS_RIPEMD160_ALT) + "RIPEMD160_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_ALT */ +#if defined(MBEDTLS_RSA_ALT) + "RSA_ALT", //no-check-names +#endif /* MBEDTLS_RSA_ALT */ +#if defined(MBEDTLS_SHA1_ALT) + "SHA1_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_ALT */ +#if defined(MBEDTLS_SHA256_ALT) + "SHA256_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_ALT */ +#if defined(MBEDTLS_SHA512_ALT) + "SHA512_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_ALT */ +#if defined(MBEDTLS_ECP_ALT) + "ECP_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ALT */ +#if defined(MBEDTLS_MD5_PROCESS_ALT) + "MD5_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_MD5_PROCESS_ALT */ +#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT) + "RIPEMD160_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */ +#if defined(MBEDTLS_SHA1_PROCESS_ALT) + "SHA1_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_PROCESS_ALT */ +#if defined(MBEDTLS_SHA256_PROCESS_ALT) + "SHA256_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_PROCESS_ALT */ +#if defined(MBEDTLS_SHA512_PROCESS_ALT) + "SHA512_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_PROCESS_ALT */ +#if defined(MBEDTLS_DES_SETKEY_ALT) + "DES_SETKEY_ALT", //no-check-names +#endif /* MBEDTLS_DES_SETKEY_ALT */ +#if defined(MBEDTLS_DES_CRYPT_ECB_ALT) + "DES_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT) + "DES3_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_AES_SETKEY_ENC_ALT) + "AES_SETKEY_ENC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */ +#if defined(MBEDTLS_AES_SETKEY_DEC_ALT) + "AES_SETKEY_DEC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */ +#if defined(MBEDTLS_AES_ENCRYPT_ALT) + "AES_ENCRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_ENCRYPT_ALT */ +#if defined(MBEDTLS_AES_DECRYPT_ALT) + "AES_DECRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_DECRYPT_ALT */ +#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) + "ECDH_GEN_PUBLIC_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */ +#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) + "ECDH_COMPUTE_SHARED_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */ +#if defined(MBEDTLS_ECDSA_VERIFY_ALT) + "ECDSA_VERIFY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_VERIFY_ALT */ +#if defined(MBEDTLS_ECDSA_SIGN_ALT) + "ECDSA_SIGN_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_SIGN_ALT */ +#if defined(MBEDTLS_ECDSA_GENKEY_ALT) + "ECDSA_GENKEY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_GENKEY_ALT */ +#if defined(MBEDTLS_ECP_INTERNAL_ALT) + "ECP_INTERNAL_ALT", //no-check-names +#endif /* MBEDTLS_ECP_INTERNAL_ALT */ +#if defined(MBEDTLS_ECP_NO_FALLBACK) + "ECP_NO_FALLBACK", //no-check-names +#endif /* MBEDTLS_ECP_NO_FALLBACK */ +#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) + "ECP_RANDOMIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) + "ECP_ADD_MIXED_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) + "ECP_DOUBLE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) + "ECP_NORMALIZE_JAC_MANY_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) + "ECP_NORMALIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) + "ECP_DOUBLE_ADD_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */ +#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) + "ECP_RANDOMIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) + "ECP_NORMALIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */ +#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) + "ENTROPY_HARDWARE_ALT", //no-check-names +#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */ +#if defined(MBEDTLS_AES_ROM_TABLES) + "AES_ROM_TABLES", //no-check-names +#endif /* MBEDTLS_AES_ROM_TABLES */ +#if defined(MBEDTLS_AES_FEWER_TABLES) + "AES_FEWER_TABLES", //no-check-names +#endif /* MBEDTLS_AES_FEWER_TABLES */ +#if defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH) + "AES_ONLY_128_BIT_KEY_LENGTH", //no-check-names +#endif /* MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */ +#if defined(MBEDTLS_AES_USE_HARDWARE_ONLY) + "AES_USE_HARDWARE_ONLY", //no-check-names +#endif /* MBEDTLS_AES_USE_HARDWARE_ONLY */ +#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY) + "CAMELLIA_SMALL_MEMORY", //no-check-names +#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */ +#if defined(MBEDTLS_CHECK_RETURN_WARNING) + "CHECK_RETURN_WARNING", //no-check-names +#endif /* MBEDTLS_CHECK_RETURN_WARNING */ +#if defined(MBEDTLS_CIPHER_MODE_CBC) + "CIPHER_MODE_CBC", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CBC */ +#if defined(MBEDTLS_CIPHER_MODE_CFB) + "CIPHER_MODE_CFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CFB */ +#if defined(MBEDTLS_CIPHER_MODE_CTR) + "CIPHER_MODE_CTR", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CTR */ +#if defined(MBEDTLS_CIPHER_MODE_OFB) + "CIPHER_MODE_OFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_OFB */ +#if defined(MBEDTLS_CIPHER_MODE_XTS) + "CIPHER_MODE_XTS", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_XTS */ +#if defined(MBEDTLS_CIPHER_NULL_CIPHER) + "CIPHER_NULL_CIPHER", //no-check-names +#endif /* MBEDTLS_CIPHER_NULL_CIPHER */ +#if defined(MBEDTLS_CIPHER_PADDING_PKCS7) + "CIPHER_PADDING_PKCS7", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ +#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) + "CIPHER_PADDING_ONE_AND_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) + "CIPHER_PADDING_ZEROS_AND_LEN", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS) + "CIPHER_PADDING_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ +#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) + "CTR_DRBG_USE_128_BIT_KEY", //no-check-names +#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ +#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED) + "ECDH_VARIANT_EVEREST_ENABLED", //no-check-names +#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) + "ECP_DP_SECP192R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) + "ECP_DP_SECP224R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) + "ECP_DP_SECP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) + "ECP_DP_SECP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) + "ECP_DP_SECP521R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) + "ECP_DP_SECP192K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) + "ECP_DP_SECP224K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) + "ECP_DP_SECP256K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) + "ECP_DP_BP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) + "ECP_DP_BP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) + "ECP_DP_BP512R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) + "ECP_DP_CURVE25519_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) + "ECP_DP_CURVE448_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */ +#if defined(MBEDTLS_ECP_NIST_OPTIM) + "ECP_NIST_OPTIM", //no-check-names +#endif /* MBEDTLS_ECP_NIST_OPTIM */ +#if defined(MBEDTLS_ECP_RESTARTABLE) + "ECP_RESTARTABLE", //no-check-names +#endif /* MBEDTLS_ECP_RESTARTABLE */ +#if defined(MBEDTLS_ECP_WITH_MPI_UINT) + "ECP_WITH_MPI_UINT", //no-check-names +#endif /* MBEDTLS_ECP_WITH_MPI_UINT */ +#if defined(MBEDTLS_ECDSA_DETERMINISTIC) + "ECDSA_DETERMINISTIC", //no-check-names +#endif /* MBEDTLS_ECDSA_DETERMINISTIC */ +#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) + "KEY_EXCHANGE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) + "KEY_EXCHANGE_DHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) + "KEY_EXCHANGE_ECDHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) + "KEY_EXCHANGE_RSA_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) + "KEY_EXCHANGE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) + "KEY_EXCHANGE_DHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) + "KEY_EXCHANGE_ECDHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDHE_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDH_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) + "KEY_EXCHANGE_ECDH_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) + "KEY_EXCHANGE_ECJPAKE_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */ +#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED) + "PK_PARSE_EC_EXTENDED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */ +#if defined(MBEDTLS_PK_PARSE_EC_COMPRESSED) + "PK_PARSE_EC_COMPRESSED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_COMPRESSED */ +#if defined(MBEDTLS_ERROR_STRERROR_DUMMY) + "ERROR_STRERROR_DUMMY", //no-check-names +#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */ +#if defined(MBEDTLS_GENPRIME) + "GENPRIME", //no-check-names +#endif /* MBEDTLS_GENPRIME */ +#if defined(MBEDTLS_FS_IO) + "FS_IO", //no-check-names +#endif /* MBEDTLS_FS_IO */ +#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) + "NO_DEFAULT_ENTROPY_SOURCES", //no-check-names +#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */ +#if defined(MBEDTLS_NO_PLATFORM_ENTROPY) + "NO_PLATFORM_ENTROPY", //no-check-names +#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */ +#if defined(MBEDTLS_ENTROPY_FORCE_SHA256) + "ENTROPY_FORCE_SHA256", //no-check-names +#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */ +#if defined(MBEDTLS_ENTROPY_NV_SEED) + "ENTROPY_NV_SEED", //no-check-names +#endif /* MBEDTLS_ENTROPY_NV_SEED */ +#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) + "PSA_CRYPTO_KEY_ID_ENCODES_OWNER", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ +#if defined(MBEDTLS_MEMORY_DEBUG) + "MEMORY_DEBUG", //no-check-names +#endif /* MBEDTLS_MEMORY_DEBUG */ +#if defined(MBEDTLS_MEMORY_BACKTRACE) + "MEMORY_BACKTRACE", //no-check-names +#endif /* MBEDTLS_MEMORY_BACKTRACE */ +#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT) + "PK_RSA_ALT_SUPPORT", //no-check-names +#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */ +#if defined(MBEDTLS_PKCS1_V15) + "PKCS1_V15", //no-check-names +#endif /* MBEDTLS_PKCS1_V15 */ +#if defined(MBEDTLS_PKCS1_V21) + "PKCS1_V21", //no-check-names +#endif /* MBEDTLS_PKCS1_V21 */ +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + "PSA_CRYPTO_BUILTIN_KEYS", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ +#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) + "PSA_CRYPTO_CLIENT", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ +#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) + "PSA_CRYPTO_EXTERNAL_RNG", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ +#if defined(MBEDTLS_PSA_CRYPTO_SPM) + "PSA_CRYPTO_SPM", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_SPM */ +#if defined(MBEDTLS_PSA_KEY_STORE_DYNAMIC) + "PSA_KEY_STORE_DYNAMIC", //no-check-names +#endif /* MBEDTLS_PSA_KEY_STORE_DYNAMIC */ +#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) + "PSA_P256M_DRIVER_ENABLED", //no-check-names +#endif /* MBEDTLS_PSA_P256M_DRIVER_ENABLED */ +#if defined(MBEDTLS_PSA_INJECT_ENTROPY) + "PSA_INJECT_ENTROPY", //no-check-names +#endif /* MBEDTLS_PSA_INJECT_ENTROPY */ +#if defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) + "PSA_ASSUME_EXCLUSIVE_BUFFERS", //no-check-names +#endif /* MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS */ +#if defined(MBEDTLS_RSA_NO_CRT) + "RSA_NO_CRT", //no-check-names +#endif /* MBEDTLS_RSA_NO_CRT */ +#if defined(MBEDTLS_SELF_TEST) + "SELF_TEST", //no-check-names +#endif /* MBEDTLS_SELF_TEST */ +#if defined(MBEDTLS_SHA256_SMALLER) + "SHA256_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA256_SMALLER */ +#if defined(MBEDTLS_SHA512_SMALLER) + "SHA512_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA512_SMALLER */ +#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES) + "SSL_ALL_ALERT_MESSAGES", //no-check-names +#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) + "SSL_DTLS_CONNECTION_ID", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) + "SSL_DTLS_CONNECTION_ID_COMPAT", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */ +#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) + "SSL_ASYNC_PRIVATE", //no-check-names +#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */ +#if defined(MBEDTLS_SSL_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/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake new file mode 100644 index 0000000..9c252f9 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/mbedtls/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle b/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..0689070 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj new file mode 100644 index 0000000..69cfa5c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj new file mode 100644 index 0000000..9364873 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj new file mode 100644 index 0000000..76c4a37 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj new file mode 100644 index 0000000..7ab722d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/mqtt/cmake_install.cmake b/JoystickControlServo/build/esp-idf/mqtt/cmake_install.cmake new file mode 100644 index 0000000..87049d8 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/mqtt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/mqtt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/mqtt/libmqtt.a b/JoystickControlServo/build/esp-idf/mqtt/libmqtt.a new file mode 100644 index 0000000..bb01cf0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/mqtt/libmqtt.a differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj new file mode 100644 index 0000000..27fad22 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj new file mode 100644 index 0000000..fd1e5a0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj new file mode 100644 index 0000000..610e3f8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj new file mode 100644 index 0000000..ce8eae0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj new file mode 100644 index 0000000..3ab3399 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj new file mode 100644 index 0000000..10a3135 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj new file mode 100644 index 0000000..80ba24e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj new file mode 100644 index 0000000..46142b6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj new file mode 100644 index 0000000..166b416 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj new file mode 100644 index 0000000..8ede066 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj new file mode 100644 index 0000000..5a480d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj new file mode 100644 index 0000000..9d83e1d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj new file mode 100644 index 0000000..752557c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj new file mode 100644 index 0000000..054a86f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj new file mode 100644 index 0000000..97c0ef8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj new file mode 100644 index 0000000..26888c6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj new file mode 100644 index 0000000..83f62b1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj new file mode 100644 index 0000000..21fee0b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj new file mode 100644 index 0000000..6d687dd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/newlib/cmake_install.cmake b/JoystickControlServo/build/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..80b901e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/port/cmake_install.cmake") +endif() + diff --git a/JoystickControlServo/build/esp-idf/newlib/libnewlib.a b/JoystickControlServo/build/esp-idf/newlib/libnewlib.a new file mode 100644 index 0000000..5dfeb6a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/newlib/libnewlib.a differ diff --git a/JoystickControlServo/build/esp-idf/newlib/port/cmake_install.cmake b/JoystickControlServo/build/esp-idf/newlib/port/cmake_install.cmake new file mode 100644 index 0000000..8bc60b8 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/newlib/port/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/newlib/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj new file mode 100644 index 0000000..d62a51a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj new file mode 100644 index 0000000..0d9d43e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj new file mode 100644 index 0000000..eddfd2b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj new file mode 100644 index 0000000..ed98a09 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj new file mode 100644 index 0000000..752be1b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj new file mode 100644 index 0000000..ada87cd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj new file mode 100644 index 0000000..f78692d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj new file mode 100644 index 0000000..0b989b5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj new file mode 100644 index 0000000..793c7b5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj new file mode 100644 index 0000000..f02fc98 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj new file mode 100644 index 0000000..d783fbe Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj new file mode 100644 index 0000000..3966709 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj new file mode 100644 index 0000000..41875be Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj new file mode 100644 index 0000000..49bd2cf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj new file mode 100644 index 0000000..5189aae Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/cmake_install.cmake b/JoystickControlServo/build/esp-idf/nvs_flash/cmake_install.cmake new file mode 100644 index 0000000..d71dc34 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/nvs_flash/libnvs_flash.a b/JoystickControlServo/build/esp-idf/nvs_flash/libnvs_flash.a new file mode 100644 index 0000000..8e6e90f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_flash/libnvs_flash.a differ diff --git a/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj b/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj new file mode 100644 index 0000000..3fd67b2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/nvs_sec_provider/cmake_install.cmake b/JoystickControlServo/build/esp-idf/nvs_sec_provider/cmake_install.cmake new file mode 100644 index 0000000..8a5e366 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/nvs_sec_provider/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a b/JoystickControlServo/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a new file mode 100644 index 0000000..52a225a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a differ diff --git a/JoystickControlServo/build/esp-idf/openthread/cmake_install.cmake b/JoystickControlServo/build/esp-idf/openthread/cmake_install.cmake new file mode 100644 index 0000000..857e72e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/openthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/partition_table/cmake_install.cmake b/JoystickControlServo/build/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..2ca4720 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/partition_table/partition-table-flash_args.in b/JoystickControlServo/build/esp-idf/partition_table/partition-table-flash_args.in new file mode 100644 index 0000000..ecfd9ba --- /dev/null +++ b/JoystickControlServo/build/esp-idf/partition_table/partition-table-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj new file mode 100644 index 0000000..1a3124e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protobuf-c/cmake_install.cmake b/JoystickControlServo/build/esp-idf/protobuf-c/cmake_install.cmake new file mode 100644 index 0000000..902dc03 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/protobuf-c/libprotobuf-c.a b/JoystickControlServo/build/esp-idf/protobuf-c/libprotobuf-c.a new file mode 100644 index 0000000..5d33839 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protobuf-c/libprotobuf-c.a differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj new file mode 100644 index 0000000..b65b548 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj new file mode 100644 index 0000000..412df2e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj new file mode 100644 index 0000000..b2bae1a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj new file mode 100644 index 0000000..1ac2fc3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj new file mode 100644 index 0000000..775aeba Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj new file mode 100644 index 0000000..b23d2bf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj new file mode 100644 index 0000000..a3f303d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj new file mode 100644 index 0000000..2989bd4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj new file mode 100644 index 0000000..20d0b2c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj new file mode 100644 index 0000000..675221f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj new file mode 100644 index 0000000..30b1e79 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj new file mode 100644 index 0000000..41caed8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj new file mode 100644 index 0000000..50196ad Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/protocomm/cmake_install.cmake b/JoystickControlServo/build/esp-idf/protocomm/cmake_install.cmake new file mode 100644 index 0000000..abdda7e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/protocomm/libprotocomm.a b/JoystickControlServo/build/esp-idf/protocomm/libprotocomm.a new file mode 100644 index 0000000..30a1234 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/protocomm/libprotocomm.a differ diff --git a/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj new file mode 100644 index 0000000..4563bac Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj new file mode 100644 index 0000000..ce82cd0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj new file mode 100644 index 0000000..468e929 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj new file mode 100644 index 0000000..9f20205 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj new file mode 100644 index 0000000..cb310c7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/pthread/cmake_install.cmake b/JoystickControlServo/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..666216d --- /dev/null +++ b/JoystickControlServo/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/pthread/libpthread.a b/JoystickControlServo/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..0f66cd5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/pthread/libpthread.a differ diff --git a/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj new file mode 100644 index 0000000..8f8d6c5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj new file mode 100644 index 0000000..6f4b568 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj new file mode 100644 index 0000000..81a2ecc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj new file mode 100644 index 0000000..2082ea4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj differ diff --git a/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj new file mode 100644 index 0000000..c70cb0b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj differ diff --git a/JoystickControlServo/build/esp-idf/riscv/cmake_install.cmake b/JoystickControlServo/build/esp-idf/riscv/cmake_install.cmake new file mode 100644 index 0000000..c00fbfc --- /dev/null +++ b/JoystickControlServo/build/esp-idf/riscv/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/riscv + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/riscv/libriscv.a b/JoystickControlServo/build/esp-idf/riscv/libriscv.a new file mode 100644 index 0000000..dbeb0b3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/riscv/libriscv.a differ diff --git a/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj b/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj new file mode 100644 index 0000000..e28af4f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj b/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj new file mode 100644 index 0000000..7c2c55e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/rt/cmake_install.cmake b/JoystickControlServo/build/esp-idf/rt/cmake_install.cmake new file mode 100644 index 0000000..f4b85e5 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/rt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/rt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/rt/librt.a b/JoystickControlServo/build/esp-idf/rt/librt.a new file mode 100644 index 0000000..aa9b2a2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/rt/librt.a differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj new file mode 100644 index 0000000..a431d7f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..0601a60 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj new file mode 100644 index 0000000..e579a01 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj new file mode 100644 index 0000000..5613409 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj new file mode 100644 index 0000000..af08cfa Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj new file mode 100644 index 0000000..5c718c5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj new file mode 100644 index 0000000..b478c3d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/sdmmc/cmake_install.cmake b/JoystickControlServo/build/esp-idf/sdmmc/cmake_install.cmake new file mode 100644 index 0000000..2990e88 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/sdmmc/libsdmmc.a b/JoystickControlServo/build/esp-idf/sdmmc/libsdmmc.a new file mode 100644 index 0000000..73c642f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/sdmmc/libsdmmc.a differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..8e1e8ca Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj new file mode 100644 index 0000000..0f16212 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/adc_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj new file mode 100644 index 0000000..0059643 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/dedic_gpio_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj new file mode 100644 index 0000000..5b7024a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/etm_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj new file mode 100644 index 0000000..20e002b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gdma_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj new file mode 100644 index 0000000..50cb96c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/gpio_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj new file mode 100644 index 0000000..92e40d8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2c_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj new file mode 100644 index 0000000..852696c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/i2s_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj new file mode 100644 index 0000000..d38d27e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ieee802154_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj new file mode 100644 index 0000000..1128a0f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/interrupts.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj new file mode 100644 index 0000000..86540ff Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/ledc_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj new file mode 100644 index 0000000..1d2e0e0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mcpwm_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj new file mode 100644 index 0000000..afc2e21 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/mpi_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj new file mode 100644 index 0000000..54bf3a6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/parlio_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj new file mode 100644 index 0000000..fab9497 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/pcnt_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj new file mode 100644 index 0000000..5e6c3df Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rmt_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj new file mode 100644 index 0000000..e150503 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/rtc_io_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj new file mode 100644 index 0000000..5227c11 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdio_slave_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj new file mode 100644 index 0000000..6e54e35 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/sdm_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj new file mode 100644 index 0000000..1769f2b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/spi_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj new file mode 100644 index 0000000..c07e82a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/system_retention_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..82db5ad Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/temperature_sensor_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj new file mode 100644 index 0000000..d4b57c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/timer_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj new file mode 100644 index 0000000..40e7ffd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/twai_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj new file mode 100644 index 0000000..527df56 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/uart_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj new file mode 100644 index 0000000..639359e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c6/wdt_periph.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..69778fd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/soc/cmake_install.cmake b/JoystickControlServo/build/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..6bf9030 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/soc/libsoc.a b/JoystickControlServo/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..2007ab4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/soc/libsoc.a differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj new file mode 100644 index 0000000..15fade0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj new file mode 100644 index 0000000..22d146b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..6bb9d38 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj new file mode 100644 index 0000000..b1b95d6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj new file mode 100644 index 0000000..2f70249 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj new file mode 100644 index 0000000..1b38410 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj new file mode 100644 index 0000000..67bcf1a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj new file mode 100644 index 0000000..b81f61e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..d59ff16 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..8a62400 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..950ece5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..0572a28 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj new file mode 100644 index 0000000..06e2d37 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj new file mode 100644 index 0000000..f7c69ec Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj new file mode 100644 index 0000000..b12fc0b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj new file mode 100644 index 0000000..e36fd91 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..cb61b58 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..a3e9a6e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..6e7b22d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spi_flash/cmake_install.cmake b/JoystickControlServo/build/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..a111521 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/spi_flash/libspi_flash.a b/JoystickControlServo/build/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..6af4380 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spi_flash/libspi_flash.a differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj new file mode 100644 index 0000000..16d848d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj new file mode 100644 index 0000000..a0e0f60 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj new file mode 100644 index 0000000..e20b32d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj new file mode 100644 index 0000000..5c5e8b0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj new file mode 100644 index 0000000..ed502f7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj new file mode 100644 index 0000000..5168523 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj new file mode 100644 index 0000000..13510d1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/spiffs/cmake_install.cmake b/JoystickControlServo/build/esp-idf/spiffs/cmake_install.cmake new file mode 100644 index 0000000..87c584e --- /dev/null +++ b/JoystickControlServo/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/spiffs/libspiffs.a b/JoystickControlServo/build/esp-idf/spiffs/libspiffs.a new file mode 100644 index 0000000..7e7dc33 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/spiffs/libspiffs.a differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj new file mode 100644 index 0000000..e212b74 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj new file mode 100644 index 0000000..ff7869a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj new file mode 100644 index 0000000..a9292f5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj new file mode 100644 index 0000000..bab89a7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj new file mode 100644 index 0000000..d83cee2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/cmake_install.cmake b/JoystickControlServo/build/esp-idf/tcp_transport/cmake_install.cmake new file mode 100644 index 0000000..a50527c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/tcp_transport/libtcp_transport.a b/JoystickControlServo/build/esp-idf/tcp_transport/libtcp_transport.a new file mode 100644 index 0000000..99a2a53 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/tcp_transport/libtcp_transport.a differ diff --git a/JoystickControlServo/build/esp-idf/ulp/cmake_install.cmake b/JoystickControlServo/build/esp-idf/ulp/cmake_install.cmake new file mode 100644 index 0000000..51df362 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj new file mode 100644 index 0000000..82d9ff3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj new file mode 100644 index 0000000..9bc231e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj new file mode 100644 index 0000000..b16b68e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..f4f3009 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj new file mode 100644 index 0000000..cb55495 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj new file mode 100644 index 0000000..ecbada1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj new file mode 100644 index 0000000..d517cb2 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj new file mode 100644 index 0000000..cd71cd7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/unity/cmake_install.cmake b/JoystickControlServo/build/esp-idf/unity/cmake_install.cmake new file mode 100644 index 0000000..c306425 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/unity/libunity.a b/JoystickControlServo/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..366e347 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/unity/libunity.a differ diff --git a/JoystickControlServo/build/esp-idf/usb/cmake_install.cmake b/JoystickControlServo/build/esp-idf/usb/cmake_install.cmake new file mode 100644 index 0000000..338e077 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/usb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj new file mode 100644 index 0000000..869a577 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj new file mode 100644 index 0000000..9069663 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj new file mode 100644 index 0000000..96abf6d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj new file mode 100644 index 0000000..238ed81 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/vfs/cmake_install.cmake b/JoystickControlServo/build/esp-idf/vfs/cmake_install.cmake new file mode 100644 index 0000000..a9cab8b --- /dev/null +++ b/JoystickControlServo/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/vfs/libvfs.a b/JoystickControlServo/build/esp-idf/vfs/libvfs.a new file mode 100644 index 0000000..e206d02 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/vfs/libvfs.a differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj new file mode 100644 index 0000000..52c10d8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj new file mode 100644 index 0000000..68f215c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj new file mode 100644 index 0000000..42d3056 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj new file mode 100644 index 0000000..3bd2792 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj new file mode 100644 index 0000000..64d817b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj new file mode 100644 index 0000000..032b604 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj new file mode 100644 index 0000000..5e4ae09 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj differ diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/cmake_install.cmake b/JoystickControlServo/build/esp-idf/wear_levelling/cmake_install.cmake new file mode 100644 index 0000000..d80386c --- /dev/null +++ b/JoystickControlServo/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/wear_levelling/libwear_levelling.a b/JoystickControlServo/build/esp-idf/wear_levelling/libwear_levelling.a new file mode 100644 index 0000000..b2f71b0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wear_levelling/libwear_levelling.a differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj new file mode 100644 index 0000000..236e248 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj new file mode 100644 index 0000000..c128a59 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj new file mode 100644 index 0000000..44dbaad Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj new file mode 100644 index 0000000..c690596 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj new file mode 100644 index 0000000..883413e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj new file mode 100644 index 0000000..042d70b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj new file mode 100644 index 0000000..058e4d0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj new file mode 100644 index 0000000..22ea306 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj new file mode 100644 index 0000000..dcbc3e8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj new file mode 100644 index 0000000..563a53a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj new file mode 100644 index 0000000..82732e0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/cmake_install.cmake b/JoystickControlServo/build/esp-idf/wifi_provisioning/cmake_install.cmake new file mode 100644 index 0000000..94babbd --- /dev/null +++ b/JoystickControlServo/build/esp-idf/wifi_provisioning/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/wifi_provisioning/libwifi_provisioning.a b/JoystickControlServo/build/esp-idf/wifi_provisioning/libwifi_provisioning.a new file mode 100644 index 0000000..153bb53 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wifi_provisioning/libwifi_provisioning.a differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b/JoystickControlServo/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..c6f43df Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj b/JoystickControlServo/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..e29ddaf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj b/JoystickControlServo/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..1155b3a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj new file mode 100644 index 0000000..8a3acc5 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj new file mode 100644 index 0000000..fed4c43 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj new file mode 100644 index 0000000..ff6acae Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj new file mode 100644 index 0000000..d779871 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj new file mode 100644 index 0000000..7635506 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj new file mode 100644 index 0000000..d1987ce Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj new file mode 100644 index 0000000..9844a08 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj b/JoystickControlServo/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..21a0438 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj new file mode 100644 index 0000000..09e3e9e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj new file mode 100644 index 0000000..b8bec09 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj new file mode 100644 index 0000000..613f94c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj new file mode 100644 index 0000000..41af34a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj new file mode 100644 index 0000000..194223f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj new file mode 100644 index 0000000..327f6f7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj new file mode 100644 index 0000000..4406c0b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj new file mode 100644 index 0000000..359990d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj new file mode 100644 index 0000000..6e8d999 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj new file mode 100644 index 0000000..07820c0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj new file mode 100644 index 0000000..2abb994 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj new file mode 100644 index 0000000..e10e023 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj new file mode 100644 index 0000000..4644e21 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj new file mode 100644 index 0000000..4de992e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj new file mode 100644 index 0000000..a423a6c Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj new file mode 100644 index 0000000..def8938 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj new file mode 100644 index 0000000..2e55395 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj new file mode 100644 index 0000000..37525dc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj new file mode 100644 index 0000000..9085539 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj new file mode 100644 index 0000000..c49f859 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj new file mode 100644 index 0000000..a99560a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj new file mode 100644 index 0000000..88cc4eb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj new file mode 100644 index 0000000..b943429 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj new file mode 100644 index 0000000..66f3a9d Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj new file mode 100644 index 0000000..aedd2fc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj new file mode 100644 index 0000000..93614cf Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj new file mode 100644 index 0000000..e658282 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj new file mode 100644 index 0000000..22fe872 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj new file mode 100644 index 0000000..3a90dc0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj new file mode 100644 index 0000000..1848beb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj new file mode 100644 index 0000000..de75fa4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj new file mode 100644 index 0000000..8670306 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj new file mode 100644 index 0000000..2c5a2dd Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj new file mode 100644 index 0000000..bef2bc3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj new file mode 100644 index 0000000..e6d38a0 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj new file mode 100644 index 0000000..0191b60 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj new file mode 100644 index 0000000..9931113 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj new file mode 100644 index 0000000..08c5b1b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj new file mode 100644 index 0000000..75c3ce9 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj new file mode 100644 index 0000000..e5ece39 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj new file mode 100644 index 0000000..bccce7a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj new file mode 100644 index 0000000..9e6240f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj new file mode 100644 index 0000000..7f945f7 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj new file mode 100644 index 0000000..192887e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj new file mode 100644 index 0000000..2797482 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj new file mode 100644 index 0000000..e44241f Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj new file mode 100644 index 0000000..5ba4606 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj new file mode 100644 index 0000000..b510e3e Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj new file mode 100644 index 0000000..26cabbe Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj new file mode 100644 index 0000000..80eeeb1 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj new file mode 100644 index 0000000..43ef1db Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj new file mode 100644 index 0000000..6cef9f6 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj new file mode 100644 index 0000000..8445a32 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj new file mode 100644 index 0000000..5e57327 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj new file mode 100644 index 0000000..09d933b Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj new file mode 100644 index 0000000..86e57ac Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj new file mode 100644 index 0000000..7c7f0bb Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj new file mode 100644 index 0000000..7a3d188 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj new file mode 100644 index 0000000..55f6790 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj new file mode 100644 index 0000000..509bbc8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj new file mode 100644 index 0000000..1921df8 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj new file mode 100644 index 0000000..f39a142 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj new file mode 100644 index 0000000..0950b0a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj new file mode 100644 index 0000000..5794e83 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj new file mode 100644 index 0000000..93c7d1a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj new file mode 100644 index 0000000..745f280 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj new file mode 100644 index 0000000..f32b6c4 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj new file mode 100644 index 0000000..c32403a Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj new file mode 100644 index 0000000..25023bc Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj new file mode 100644 index 0000000..0b4ed76 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj new file mode 100644 index 0000000..f5fe630 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj new file mode 100644 index 0000000..e4f6ef3 Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj differ diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/cmake_install.cmake b/JoystickControlServo/build/esp-idf/wpa_supplicant/cmake_install.cmake new file mode 100644 index 0000000..931cd29 --- /dev/null +++ b/JoystickControlServo/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/JoystickControlServo") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") +endif() + diff --git a/JoystickControlServo/build/esp-idf/wpa_supplicant/libwpa_supplicant.a b/JoystickControlServo/build/esp-idf/wpa_supplicant/libwpa_supplicant.a new file mode 100644 index 0000000..e16a5be Binary files /dev/null and b/JoystickControlServo/build/esp-idf/wpa_supplicant/libwpa_supplicant.a differ diff --git a/JoystickControlServo/build/flash_app_args b/JoystickControlServo/build/flash_app_args new file mode 100644 index 0000000..f39aab7 --- /dev/null +++ b/JoystickControlServo/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 JoystickControlServo.bin diff --git a/JoystickControlServo/build/flash_args b/JoystickControlServo/build/flash_args new file mode 100644 index 0000000..3fa3b14 --- /dev/null +++ b/JoystickControlServo/build/flash_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 JoystickControlServo.bin +0x8000 partition_table/partition-table.bin diff --git a/JoystickControlServo/build/flash_args.in b/JoystickControlServo/build/flash_args.in new file mode 100644 index 0000000..880728a --- /dev/null +++ b/JoystickControlServo/build/flash_args.in @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 $.bin +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/JoystickControlServo/build/flash_bootloader_args b/JoystickControlServo/build/flash_bootloader_args new file mode 100644 index 0000000..7b1a5bd --- /dev/null +++ b/JoystickControlServo/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin diff --git a/JoystickControlServo/build/flash_project_args b/JoystickControlServo/build/flash_project_args new file mode 100644 index 0000000..3fa3b14 --- /dev/null +++ b/JoystickControlServo/build/flash_project_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 JoystickControlServo.bin +0x8000 partition_table/partition-table.bin diff --git a/JoystickControlServo/build/flasher_args.json b/JoystickControlServo/build/flasher_args.json new file mode 100644 index 0000000..b464f97 --- /dev/null +++ b/JoystickControlServo/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "JoystickControlServo.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "JoystickControlServo.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" : "esp32c6" + } +} diff --git a/JoystickControlServo/build/kconfigs.in b/JoystickControlServo/build/kconfigs.in new file mode 100644 index 0000000..52656d9 --- /dev/null +++ b/JoystickControlServo/build/kconfigs.in @@ -0,0 +1,75 @@ +source "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/bt/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/console/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/driver/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/heap/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/openthread/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/ulp/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/unity/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/usb/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/vfs/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/Kconfig" +source "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/Kconfig" \ No newline at end of file diff --git a/JoystickControlServo/build/kconfigs_projbuild.in b/JoystickControlServo/build/kconfigs_projbuild.in new file mode 100644 index 0000000..790c080 --- /dev/null +++ b/JoystickControlServo/build/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/famil/esp/v5.4/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/JoystickControlServo/build/ldgen_libraries b/JoystickControlServo/build/ldgen_libraries new file mode 100644 index 0000000..7c3d290 --- /dev/null +++ b/JoystickControlServo/build/ldgen_libraries @@ -0,0 +1,85 @@ +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/libriscv.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/libesp_pm.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/libmbedtls.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/libesp_app_format.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/libapp_update.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/libesp_partition.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/libefuse.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/libbootloader_support.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/libesp_mm.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/libspi_flash.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/libesp_system.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/libesp_common.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/libesp_rom.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/libhal.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/liblog.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/libheap.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/libsoc.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/libesp_security.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/libesp_hw_support.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/libfreertos.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/libnewlib.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/libpthread.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/libcxx.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/libesp_timer.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/libapp_trace.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/libesp_event.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/libnvs_flash.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/libsdmmc.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/libdriver.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/libesp_phy.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/libesp_vfs_console.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/libvfs.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/liblwip.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/libesp_netif.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/libesp_coex.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/libesp_wifi.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/libunity.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/libcmock.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/libconsole.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/libhttp_parser.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/libesp-tls.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/libesp_adc.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/libesp_driver_cam.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/libesp_eth.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/libesp_hid.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/libtcp_transport.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/libesp_http_client.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/libesp_http_server.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/libesp_https_ota.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/libesp_https_server.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/libesp_lcd.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/libprotobuf-c.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/libprotocomm.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/libespcoredump.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/libwear_levelling.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/libfatfs.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/libieee802154.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/libjson.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/libmqtt.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/librt.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/libspiffs.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/libwifi_provisioning.a +C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/libmain.a diff --git a/JoystickControlServo/build/ldgen_libraries.in b/JoystickControlServo/build/ldgen_libraries.in new file mode 100644 index 0000000..debfaf2 --- /dev/null +++ b/JoystickControlServo/build/ldgen_libraries.in @@ -0,0 +1,85 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/JoystickControlServo/build/log/idf_py_stderr_output_24244 b/JoystickControlServo/build/log/idf_py_stderr_output_24244 new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/log/idf_py_stdout_output_24244 b/JoystickControlServo/build/log/idf_py_stdout_output_24244 new file mode 100644 index 0000000..a90e27e --- /dev/null +++ b/JoystickControlServo/build/log/idf_py_stdout_output_24244 @@ -0,0 +1,47 @@ +-- Existing sdkconfig 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig' renamed to 'C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig.old'. +-- Found Git: C:/Users/famil/.espressif/tools/idf-git/2.39.2/cmd/git.exe (found version "2.39.2.windows.1") +-- The C compiler identification is GNU 14.2.0 +-- The CXX compiler identification is GNU 14.2.0 +-- The ASM compiler identification is GNU +-- Found assembler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Building ESP-IDF components for target esp32c6 +-- Project sdkconfig file C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/riscv/ld/rom.api.ld +-- Found Python3: C:/Users/famil/.espressif/python_env/idf5.4_py3.11_env/Scripts/python.exe (found version "3.11.2") found components: Interpreter +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS - Success +-- App "JoystickControlServo" version: 268dbb0 +-- Adding linker script C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.api.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.rvfp.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.wdt.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.systimer.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.version.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.phy.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.coexist.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.net80211.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.pp.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib-normal.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/esp32c6/ld/esp32c6.rom.heap.ld +-- Adding linker script C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ld/esp32c6.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_driver_ana_cmpr esp_driver_cam esp_driver_dac esp_driver_gpio esp_driver_gptimer esp_driver_i2c esp_driver_i2s esp_driver_isp esp_driver_jpeg esp_driver_ledc esp_driver_mcpwm esp_driver_parlio esp_driver_pcnt esp_driver_ppa esp_driver_rmt esp_driver_sdio esp_driver_sdm esp_driver_sdmmc esp_driver_sdspi esp_driver_spi esp_driver_touch_sens esp_driver_tsens esp_driver_uart esp_driver_usb_serial_jtag 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_security esp_system esp_timer esp_vfs_console esp_wifi espcoredump 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 protobuf-c protocomm pthread riscv rt sdmmc soc spi_flash spiffs tcp_transport ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant +-- Component paths: C:/Users/famil/esp/v5.4/esp-idf/components/app_trace C:/Users/famil/esp/v5.4/esp-idf/components/app_update C:/Users/famil/esp/v5.4/esp-idf/components/bootloader C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support C:/Users/famil/esp/v5.4/esp-idf/components/bt C:/Users/famil/esp/v5.4/esp-idf/components/cmock C:/Users/famil/esp/v5.4/esp-idf/components/console C:/Users/famil/esp/v5.4/esp-idf/components/cxx C:/Users/famil/esp/v5.4/esp-idf/components/driver C:/Users/famil/esp/v5.4/esp-idf/components/efuse C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format C:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex C:/Users/famil/esp/v5.4/esp-idf/components/esp_common C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth C:/Users/famil/esp/v5.4/esp-idf/components/esp_event C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub C:/Users/famil/esp/v5.4/esp-idf/components/esp_hid C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif_stack C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom C:/Users/famil/esp/v5.4/esp-idf/components/esp_security C:/Users/famil/esp/v5.4/esp-idf/components/esp_system C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py C:/Users/famil/esp/v5.4/esp-idf/components/fatfs C:/Users/famil/esp/v5.4/esp-idf/components/freertos C:/Users/famil/esp/v5.4/esp-idf/components/hal C:/Users/famil/esp/v5.4/esp-idf/components/heap C:/Users/famil/esp/v5.4/esp-idf/components/http_parser C:/Users/famil/esp/v5.4/esp-idf/components/idf_test C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154 C:/Users/famil/esp/v5.4/esp-idf/components/json C:/Users/famil/esp/v5.4/esp-idf/components/log C:/Users/famil/esp/v5.4/esp-idf/components/lwip C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls C:/Users/famil/esp/v5.4/esp-idf/components/mqtt C:/Users/famil/esp/v5.4/esp-idf/components/newlib C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider C:/Users/famil/esp/v5.4/esp-idf/components/openthread C:/Users/famil/esp/v5.4/esp-idf/components/partition_table C:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c C:/Users/famil/esp/v5.4/esp-idf/components/protocomm C:/Users/famil/esp/v5.4/esp-idf/components/pthread C:/Users/famil/esp/v5.4/esp-idf/components/riscv C:/Users/famil/esp/v5.4/esp-idf/components/rt C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc C:/Users/famil/esp/v5.4/esp-idf/components/soc C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash C:/Users/famil/esp/v5.4/esp-idf/components/spiffs C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport C:/Users/famil/esp/v5.4/esp-idf/components/ulp C:/Users/famil/esp/v5.4/esp-idf/components/unity C:/Users/famil/esp/v5.4/esp-idf/components/usb C:/Users/famil/esp/v5.4/esp-idf/components/vfs C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant +-- Configuring done (9.4s) +-- Generating done (1.4s) +-- Build files have been written to: C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build diff --git a/JoystickControlServo/build/partition-table-flash_args b/JoystickControlServo/build/partition-table-flash_args new file mode 100644 index 0000000..703accc --- /dev/null +++ b/JoystickControlServo/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x8000 partition_table/partition-table.bin diff --git a/JoystickControlServo/build/partition_table/partition-table.bin b/JoystickControlServo/build/partition_table/partition-table.bin new file mode 100644 index 0000000..b8fa03b Binary files /dev/null and b/JoystickControlServo/build/partition_table/partition-table.bin differ diff --git a/JoystickControlServo/build/project_description.json b/JoystickControlServo/build/project_description.json new file mode 100644 index 0000000..fa99903 --- /dev/null +++ b/JoystickControlServo/build/project_description.json @@ -0,0 +1,2837 @@ +{ + "version": "1.1", + "project_name": "JoystickControlServo", + "project_version": "268dbb0", + "project_path": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo", + "idf_path": "C:/Users/famil/esp/v5.4/esp-idf", + "build_dir": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build", + "config_file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/sdkconfig", + "config_defaults": "", + "bootloader_elf": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/bootloader/bootloader.elf", + "app_elf": "JoystickControlServo.elf", + "app_bin": "JoystickControlServo.bin", + "build_type": "flash_app", + "git_revision": "v5.4", + "target": "esp32c6", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "riscv32-esp-elf-", + "c_compiler": "C:/Users/famil/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/bt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/console/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/driver/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/efuse/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/freertos/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/hal/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/heap/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/log/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/lwip/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/newlib/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/openthread/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/pthread/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/soc/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/ulp/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/unity/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/usb/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/vfs/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/Kconfig;C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/famil/esp/v5.4/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", "riscv" ], + "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_driver_ana_cmpr", "esp_driver_cam", "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "esp_driver_isp", "esp_driver_jpeg", "esp_driver_ledc", "esp_driver_mcpwm", "esp_driver_parlio", "esp_driver_pcnt", "esp_driver_ppa", "esp_driver_rmt", "esp_driver_sdio", "esp_driver_sdm", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_spi", "esp_driver_touch_sens", "esp_driver_tsens", "esp_driver_uart", "esp_driver_usb_serial_jtag", "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_security", "esp_system", "esp_timer", "esp_vfs_console", "esp_wifi", "espcoredump", "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", "protobuf-c", "protocomm", "pthread", "riscv", "rt", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "" ], + "build_component_paths" : [ "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace", "C:/Users/famil/esp/v5.4/esp-idf/components/app_update", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support", "C:/Users/famil/esp/v5.4/esp-idf/components/bt", "C:/Users/famil/esp/v5.4/esp-idf/components/cmock", "C:/Users/famil/esp/v5.4/esp-idf/components/console", "C:/Users/famil/esp/v5.4/esp-idf/components/cxx", "C:/Users/famil/esp/v5.4/esp-idf/components/driver", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse", "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_bootloader_format", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_event", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hid", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_ota", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif_stack", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_ringbuf", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump", "C:/Users/famil/esp/v5.4/esp-idf/components/esptool_py", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos", "C:/Users/famil/esp/v5.4/esp-idf/components/hal", "C:/Users/famil/esp/v5.4/esp-idf/components/heap", "C:/Users/famil/esp/v5.4/esp-idf/components/http_parser", "C:/Users/famil/esp/v5.4/esp-idf/components/idf_test", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154", "C:/Users/famil/esp/v5.4/esp-idf/components/json", "C:/Users/famil/esp/v5.4/esp-idf/components/log", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip", "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main", "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls", "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_sec_provider", "C:/Users/famil/esp/v5.4/esp-idf/components/openthread", "C:/Users/famil/esp/v5.4/esp-idf/components/partition_table", "C:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm", "C:/Users/famil/esp/v5.4/esp-idf/components/pthread", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv", "C:/Users/famil/esp/v5.4/esp-idf/components/rt", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc", "C:/Users/famil/esp/v5.4/esp-idf/components/soc", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs", "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport", "C:/Users/famil/esp/v5.4/esp-idf/components/ulp", "C:/Users/famil/esp/v5.4/esp-idf/components/unity", "C:/Users/famil/esp/v5.4/esp-idf/components/usb", "C:/Users/famil/esp/v5.4/esp-idf/components/vfs", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant", "" ], + "build_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace", + "type": "LIBRARY", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_trace/libapp_trace.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/app_trace.c", "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/app_trace_util.c", "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace/host_file_io.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/app_update/libapp_update.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/app_update/esp_ota_ops.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_random_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c", "C:/Users/famil/esp/v5.4/esp-idf/components/bootloader_support/src/esp32c6/secure_boot_secure_features.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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", "esp_driver_uart", "vfs", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/cmock", + "type": "LIBRARY", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cmock/libcmock.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/cmock/CMock/src/cmock.c" ], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/console", + "type": "LIBRARY", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/console/libconsole.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/console/commands.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/esp_console_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/split_argv.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/linenoise/linenoise.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/esp_console_repl_chip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_cmd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_date.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_dbl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_dstr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_end.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_file.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_hashtable.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_int.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_lit.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_rem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_rex.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_str.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/arg_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/console/argtable3/argtable3.c" ], + "include_dirs": [ "C:/Users/famil/esp/v5.4/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/cxx/libcxx.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_exception_stubs.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_guards.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/cxx/cxx_init.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/driver/libdriver.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/adc_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/timer_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/i2c/i2c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/i2s_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/mcpwm_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/pcnt_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/rmt_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/driver/twai/twai.c" ], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_table.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_fields.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_rtc_calib.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/esp32c6/esp_efuse_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", "C:/Users/famil/esp/v5.4/esp-idf/components/efuse/src/esp_efuse_startup.c" ], + "include_dirs": [ "include", "esp32c6/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp-tls/libesp-tls.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_error_capture.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_platform_port.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls/esp_tls_mbedtls.c" ], + "include_dirs": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_oneshot.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_cali.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_continuous.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_monitor.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/gdma/adc_dma.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/adc_filter.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc/esp32c6/curve_fitting_coefficients.c" ], + "include_dirs": [ "include", "interface", "esp32c6/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_coex/libesp_coex.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/lib_printf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/esp32c6/esp_coex_adapter.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_coex/src/coexist_debug.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam", + "type": "LIBRARY", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_cam/libesp_driver_cam.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/rtc_io.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_flex_glitch_filter.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio/src/gpio_etm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer/src/gptimer_etm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_master.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c/i2c_slave.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_std.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_tdm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_etm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_ledc", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc/src/ledc.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm/src/mcpwm_etm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_tx.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio/src/parlio_rx.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio/src/sdio_slave.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm/src/sdm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens", + "type": "LIBRARY", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens/src/temperature_sensor_etm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart", + "type": "LIBRARY", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/src/uart.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart/src/uart_vfs.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag", + "type": "LIBRARY", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c" ], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth", + "type": "LIBRARY", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_eth/libesp_eth.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/src/esp_eth.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c" ], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_event/libesp_event.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/default_event_loop.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_event/esp_event.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/gdbstub.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/packet.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c" ], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hid/libesp_hid.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/src/esp_hidd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hid/src/esp_hidh.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_client/libesp_http_client.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/esp_http_client.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/http_auth.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_client/lib/http_header.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_http_server/libesp_http_server.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_main.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_parse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_sess.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_txrx.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_uri.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_http_server/src/httpd_ws.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_ota/libesp_https_ota.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_https_server", + "type": "LIBRARY", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_https_server/libesp_https_server.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_https_server/src/https_server.c" ], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "hal", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_cpu_intr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/cpu_region_protect.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_clk.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/hw_random.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/intr_alloc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/mac_addr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/periph_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/revision.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/rtc_module.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_modem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_modes.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_console.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_gpio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_event.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/io_mux.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/esp_clk_tree.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_link.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/spi_bus_lock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_retention.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_system_peripheral.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_sleep_retention.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/gdma_etm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/systimer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_etm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/pau_regdma.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/regdma_link.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/modem_clock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/mspi_timing_tuning.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/esp_clock_output.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_clk.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_param.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/pmu_sleep.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/rtc_time.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/chip_info.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/ocode_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/port/esp32c6/sar_periph_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_cpu.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_cpu_asm.S", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_clock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support/lowpower/port/esp32c6/sleep_modem_state.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32c6", "dma/include", "ldo/include", "debug_probe/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_lcd/libesp_lcd.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_mm/libesp_mm.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/esp_mmu_map.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/port/esp32c6/ext_mem_layout.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/esp_cache.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_mm/heap_align_hw.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_netif/libesp_netif.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/esp_netif_handlers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/esp_netif_objects.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/esp_netif_defaults.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_partition/partition.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_phy/libesp_phy.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_override.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/lib_printf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/phy_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/esp32c6/phy_init_data.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_phy/src/btbb_init.c" ], + "include_dirs": [ "include", "esp32c6/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/pm_locks.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm/pm_trace.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_psram", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "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/famil/esp/v5.4/esp-idf/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_hp_regi2c_esp32c6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_tlsf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_multi_heap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_rom/patches/esp_rom_wdt.c" ], + "include_dirs": [ "include", "esp32c6/include", "esp32c6/include/esp32c6", "esp32c6" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", + "type": "LIBRARY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_security/libesp_security.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_hmac.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_ds.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_dpa_protection.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security/src/esp_crypto_lock.c" ], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_err.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/crosscore_int.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_ipc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/freertos_hooks.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/int_wdt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/panic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/esp_system.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/startup.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/startup_funcs.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/system_time.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/stack_check.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/ubsan.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/xt_wdt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/task_wdt/task_wdt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/systick_etm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/hw_stack_guard.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/cpu_start.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/panic_handler.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/esp_system_chip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/image_process.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/brownout.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/clk.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/reset_reason.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/system_internal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system/port/soc/esp32c6/cache_err_int.c" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/system_time.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer/src/esp_timer_etm.c" ], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console", + "type": "LIBRARY", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_vfs_console/libesp_vfs_console.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console/vfs_console.c" ], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/esp_wifi/libesp_wifi.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/lib_printf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/mesh_event.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/smartconfig.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_default.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_netif.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/wifi_default_ap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/esp32c6/esp_adapter.c", "C:/Users/famil/esp/v5.4/esp-idf/components/esp_wifi/src/smartconfig_ack.c" ], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump", + "type": "LIBRARY", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/espcoredump/libespcoredump.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_flash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_uart.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_elf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_binary.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_sha.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/core_dump_crc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c" ], + "include_dirs": [ "include", "include/port/riscv" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/fatfs", + "type": "LIBRARY", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/fatfs/libfatfs.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_rawflash.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_wl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src/ff.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/src/ffunicode.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/port/freertos/ffsystem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs/vfs_fat.c", "C:/Users/famil/esp/v5.4/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/freertos/libfreertos.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/heap_idf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/app_startup.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/port_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/port_systick.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "C:/Users/famil/esp/v5.4/esp-idf/components/freertos/esp_additions/idf_additions.c" ], + "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/hal/hal_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/efuse_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/efuse_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/lp_timer_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/mmu_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/cache_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/color_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/clk_tree_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/uart_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/uart_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/gpio_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/rtc_io_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/timer_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/ledc_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/ledc_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/i2c_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/i2c_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/rmt_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/pcnt_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/mcpwm_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/twai_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/twai_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/gdma_hal_top.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/gdma_hal_ahb_v1.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/i2s_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/sdm_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/etm_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/parlio_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_hal_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_oneshot_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/adc_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/ecc_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/mpi_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/sha_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/aes_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/modem_clock_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/pau_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/brownout_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hal_iram.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_slave_hd_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/spi_flash_hal_gpspi.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/sdio_slave_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/esp32c6/pmu_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/apm_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/hmac_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/ds_hal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/hal/usb_serial_jtag_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32c6/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/heap/libheap.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps_base.c", "C:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps.c", "C:/Users/famil/esp/v5.4/esp-idf/components/heap/heap_caps_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/heap/multi_heap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/heap/port/memory_layout_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/heap/port/esp32c6/memory_layout.c" ], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/http_parser", + "type": "LIBRARY", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/http_parser/libhttp_parser.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/esp32c6" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154", + "type": "LIBRARY", + "lib": "__idf_ieee802154", + "reqs": [], + "priv_reqs": [ "esp_phy", "driver", "esp_timer", "esp_coex", "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/ieee802154/libieee802154.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/esp_ieee802154.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_ack.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_dev.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_frame.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_pib.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_util.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_sec.c", "C:/Users/famil/esp/v5.4/esp-idf/components/ieee802154/driver/esp_ieee802154_timer.c" ], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/json", + "type": "LIBRARY", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/json/libjson.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/cJSON.c", "C:/Users/famil/esp/v5.4/esp-idf/components/json/cJSON/cJSON_Utils.c" ], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/log/liblog.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_timestamp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_lock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/os/log_write.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/buffer/log_buffers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/util.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/log_level.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "C:/Users/famil/esp/v5.4/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" ], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/lwip", + "type": "LIBRARY", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/lwip/liblwip.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/apps/sntp/sntp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/api_lib.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/api_msg.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/err.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/if_api.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/netbuf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/netdb.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/netifapi.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/sockets.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/api/tcpip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/def.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/dns.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/mem.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/memp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/netif.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/pbuf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/raw.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/stats.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/sys.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/tcp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/timeouts.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/udp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/slipif.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/debug/lwip_debug.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/sockets_ext.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/freertos/sys_arch.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/acd_dhcp_check.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/apps/ping/esp_ping.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/apps/ping/ping.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/apps/ping/ping_sock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", "C:/Users/famil/esp/v5.4/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/main/libmain.a", + "sources": [ "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main/Main.c" ], + "include_dirs": [] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mqtt/libmqtt.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" ], + "include_dirs": [ "C:/Users/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/newlib", + "type": "LIBRARY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/newlib/libnewlib.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/abort.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/assert.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/heap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/flockfile.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/locks.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/poll.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/pthread.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/random.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/getentropy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/reent_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/newlib_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/syscalls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/termios.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/stdatomic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/time.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/sysconf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/realpath.c", "C:/Users/famil/esp/v5.4/esp-idf/components/newlib/scandir.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_flash/libnvs_flash.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_api.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_page.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_types.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_bootloader.c", "C:/Users/famil/esp/v5.4/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp" ], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/openthread", + "type": "CONFIG_ONLY", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "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/famil/esp/v5.4/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": [] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/protobuf-c", + "type": "LIBRARY", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protobuf-c/libprotobuf-c.a", + "sources": [ "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/protocomm/libprotocomm.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/common/protocomm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/constants.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/proto-c/session.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/transports/protocomm_console.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security0.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security1.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/security/security2.c", "C:/Users/famil/esp/v5.4/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/pthread/libpthread.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread.c", "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_cond_var.c", "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_local_storage.c", "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_rwlock.c", "C:/Users/famil/esp/v5.4/esp-idf/components/pthread/pthread_semaphore.c" ], + "include_dirs": [ "include" ] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/riscv", + "type": "LIBRARY", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/riscv/libriscv.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/riscv/instruction_decode.c", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv/interrupt.c", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv/vectors.S", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv/interrupt_plic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/riscv/vectors_intc.S" ], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/rt", + "type": "LIBRARY", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/rt/librt.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", "C:/Users/famil/esp/v5.4/esp-idf/components/rt/FreeRTOS_POSIX_utils.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_cmd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_io.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_mmc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sdmmc_sd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/soc/lldesc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/dport_access_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/interrupts.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gpio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/uart_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/adc_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/dedic_gpio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/etm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/gdma_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/spi_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ledc_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/pcnt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rmt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2s_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/i2c_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/temperature_sensor_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/timer_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/parlio_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mcpwm_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/mpi_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/twai_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/wdt_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/ieee802154_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/rtc_io_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/sdio_slave_periph.c", "C:/Users/famil/esp/v5.4/esp-idf/components/soc/esp32c6/system_retention_periph.c" ], + "include_dirs": [ "include", "esp32c6", "esp32c6/include", "esp32c6/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_brownout_hook.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_chip_th.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/memspi_host_driver.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/cache_utils.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_mmap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/flash_ops.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_wrap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/esp_flash_api.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/esp_flash_spi_init.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/spiffs", + "type": "LIBRARY", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/spiffs/libspiffs.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs_api.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/tcp_transport/libtcp_transport.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport.c", "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_ssl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_internal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_socks_proxy.c", "C:/Users/famil/esp/v5.4/esp-idf/components/tcp_transport/transport_ws.c" ], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/unity", + "type": "LIBRARY", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/unity/libunity.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity/src/unity.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_compat.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_runner.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_freertos.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_cache.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_utils_memory.c", "C:/Users/famil/esp/v5.4/esp-idf/components/unity/unity_port_esp32.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/usb", + "type": "CONFIG_ONLY", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/vfs", + "type": "LIBRARY", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/vfs/libvfs.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs.c", "C:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs_eventfd.c", "C:/Users/famil/esp/v5.4/esp-idf/components/vfs/vfs_semihost.c", "C:/Users/famil/esp/v5.4/esp-idf/components/vfs/nullfs.c" ], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wear_levelling/libwear_levelling.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/Partition.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/SPI_Flash.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/WL_Flash.cpp", "C:/Users/famil/esp/v5.4/esp-idf/components/wear_levelling/crc32.cpp", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wifi_provisioning/libwifi_provisioning.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_config.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_scan.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/manager.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/handlers.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/src/scheme_console.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", + "sources": [ "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/os_xtensa.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/port/eloop.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/common/sae.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/base64.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/uuid.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/utils/json.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", "C:/Users/famil/esp/v5.4/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c" ], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/famil/esp/v5.4/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32c6/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdio", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_sdspi", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "hal", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32c6", "dma/include", "ldo/include", "debug_probe/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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", "esp32c6/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6/include", "esp32c6/include/esp32c6", "esp32c6" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/port/riscv" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/freertos", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32c6/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32c6" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash", "newlib" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/perfmon", + "lib": "__idf_perfmon", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/rt", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32c6", "esp32c6/include", "esp32c6/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/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/famil/esp/v5.4/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/main", + "lib": "__idf_main", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + } + }, + "debug_prefix_map_gdbinit": "" +} diff --git a/JoystickControlServo/build/project_elf_src_esp32c6.c b/JoystickControlServo/build/project_elf_src_esp32c6.c new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/build/x509_crt_bundle.S b/JoystickControlServo/build/x509_crt_bundle.S new file mode 100644 index 0000000..a079934 --- /dev/null +++ b/JoystickControlServo/build/x509_crt_bundle.S @@ -0,0 +1,4388 @@ +/* * Data converted from C:/Users/famil/COMPUTER/Owen/ESPmicrocontroller/JoystickControlServo/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +#if !defined (__APPLE__) && !defined (__linux__) +.section .rodata.embedded +#endif + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x60, 0x02, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x23, 0x06, 0x00, 0x00, 0x87, 0x08, 0x00, 0x00 +.byte 0xec, 0x09, 0x00, 0x00, 0x51, 0x0c, 0x00, 0x00, 0xeb, 0x0c, 0x00, 0x00, 0xa2, 0x0d, 0x00, 0x00 +.byte 0x09, 0x10, 0x00, 0x00, 0x70, 0x11, 0x00, 0x00, 0xd8, 0x12, 0x00, 0x00, 0x41, 0x15, 0x00, 0x00 +.byte 0xfc, 0x15, 0x00, 0x00, 0x65, 0x18, 0x00, 0x00, 0xd0, 0x19, 0x00, 0x00, 0x3d, 0x1c, 0x00, 0x00 +.byte 0xaa, 0x1e, 0x00, 0x00, 0x18, 0x21, 0x00, 0x00, 0x87, 0x23, 0x00, 0x00, 0xf7, 0x25, 0x00, 0x00 +.byte 0x67, 0x27, 0x00, 0x00, 0xd7, 0x28, 0x00, 0x00, 0x48, 0x2b, 0x00, 0x00, 0xb9, 0x2d, 0x00, 0x00 +.byte 0x2a, 0x30, 0x00, 0x00, 0xed, 0x30, 0x00, 0x00, 0xb1, 0x31, 0x00, 0x00, 0x23, 0x34, 0x00, 0x00 +.byte 0x96, 0x36, 0x00, 0x00, 0x09, 0x39, 0x00, 0x00, 0xce, 0x39, 0x00, 0x00, 0x41, 0x3c, 0x00, 0x00 +.byte 0xb4, 0x3e, 0x00, 0x00, 0x79, 0x3f, 0x00, 0x00, 0x3e, 0x40, 0x00, 0x00, 0xb2, 0x42, 0x00, 0x00 +.byte 0x26, 0x45, 0x00, 0x00, 0x9a, 0x47, 0x00, 0x00, 0x60, 0x48, 0x00, 0x00, 0x26, 0x49, 0x00, 0x00 +.byte 0x9a, 0x4a, 0x00, 0x00, 0x10, 0x4d, 0x00, 0x00, 0x86, 0x4e, 0x00, 0x00, 0xfe, 0x4f, 0x00, 0x00 +.byte 0x76, 0x52, 0x00, 0x00, 0x40, 0x53, 0x00, 0x00, 0xb8, 0x55, 0x00, 0x00, 0x31, 0x57, 0x00, 0x00 +.byte 0xaa, 0x59, 0x00, 0x00, 0x23, 0x5c, 0x00, 0x00, 0x9d, 0x5e, 0x00, 0x00, 0x17, 0x61, 0x00, 0x00 +.byte 0xe3, 0x61, 0x00, 0x00, 0xaf, 0x62, 0x00, 0x00, 0x29, 0x65, 0x00, 0x00, 0xa3, 0x67, 0x00, 0x00 +.byte 0x6f, 0x68, 0x00, 0x00, 0x3b, 0x69, 0x00, 0x00, 0xb5, 0x6b, 0x00, 0x00, 0x30, 0x6e, 0x00, 0x00 +.byte 0xab, 0x70, 0x00, 0x00, 0x78, 0x71, 0x00, 0x00, 0xf4, 0x72, 0x00, 0x00, 0x70, 0x75, 0x00, 0x00 +.byte 0x21, 0x76, 0x00, 0x00, 0xef, 0x76, 0x00, 0x00, 0x6c, 0x79, 0x00, 0x00, 0xe9, 0x7a, 0x00, 0x00 +.byte 0x66, 0x7d, 0x00, 0x00, 0x35, 0x7e, 0x00, 0x00, 0xb2, 0x7f, 0x00, 0x00, 0x2f, 0x82, 0x00, 0x00 +.byte 0xad, 0x84, 0x00, 0x00, 0x2d, 0x87, 0x00, 0x00, 0xff, 0x87, 0x00, 0x00, 0x81, 0x8a, 0x00, 0x00 +.byte 0x03, 0x8c, 0x00, 0x00, 0x86, 0x8d, 0x00, 0x00, 0x0a, 0x8f, 0x00, 0x00, 0x90, 0x91, 0x00, 0x00 +.byte 0x68, 0x92, 0x00, 0x00, 0xee, 0x94, 0x00, 0x00, 0x74, 0x96, 0x00, 0x00, 0x4c, 0x97, 0x00, 0x00 +.byte 0xd5, 0x99, 0x00, 0x00, 0x5e, 0x9b, 0x00, 0x00, 0xe8, 0x9d, 0x00, 0x00, 0xc5, 0x9e, 0x00, 0x00 +.byte 0x50, 0xa1, 0x00, 0x00, 0xdb, 0xa2, 0x00, 0x00, 0xba, 0xa3, 0x00, 0x00, 0x47, 0xa6, 0x00, 0x00 +.byte 0xd4, 0xa7, 0x00, 0x00, 0x61, 0xa9, 0x00, 0x00, 0x40, 0xaa, 0x00, 0x00, 0xce, 0xac, 0x00, 0x00 +.byte 0x5c, 0xaf, 0x00, 0x00, 0x3d, 0xb0, 0x00, 0x00, 0xcc, 0xb2, 0x00, 0x00, 0x59, 0xb4, 0x00, 0x00 +.byte 0xea, 0xb5, 0x00, 0x00, 0x7b, 0xb7, 0x00, 0x00, 0x5e, 0xb8, 0x00, 0x00, 0x41, 0xb9, 0x00, 0x00 +.byte 0xd2, 0xbb, 0x00, 0x00, 0x65, 0xbd, 0x00, 0x00, 0xf7, 0xbe, 0x00, 0x00, 0x8c, 0xc1, 0x00, 0x00 +.byte 0x75, 0xc2, 0x00, 0x00, 0x0c, 0xc5, 0x00, 0x00, 0xf6, 0xc5, 0x00, 0x00, 0x8e, 0xc8, 0x00, 0x00 +.byte 0x26, 0xca, 0x00, 0x00, 0xbf, 0xcb, 0x00, 0x00, 0xaa, 0xcc, 0x00, 0x00, 0x96, 0xcd, 0x00, 0x00 +.byte 0x31, 0xd0, 0x00, 0x00, 0x03, 0xd1, 0x00, 0x00, 0xf5, 0xd1, 0x00, 0x00, 0xeb, 0xd2, 0x00, 0x00 +.byte 0x91, 0xd5, 0x00, 0x00, 0x38, 0xd7, 0x00, 0x00, 0x32, 0xd8, 0x00, 0x00, 0xda, 0xda, 0x00, 0x00 +.byte 0x84, 0xdc, 0x00, 0x00, 0x81, 0xdd, 0x00, 0x00, 0x2e, 0xe0, 0x00, 0x00, 0xdc, 0xe1, 0x00, 0x00 +.byte 0x8b, 0xe3, 0x00, 0x00, 0x3a, 0xe5, 0x00, 0x00, 0xe9, 0xe6, 0x00, 0x00, 0x98, 0xe9, 0x00, 0x00 +.byte 0x47, 0xeb, 0x00, 0x00, 0xf7, 0xec, 0x00, 0x00, 0xa8, 0xef, 0x00, 0x00, 0xac, 0xf0, 0x00, 0x00 +.byte 0x5e, 0xf3, 0x00, 0x00, 0x13, 0xf6, 0x00, 0x00, 0x1a, 0xf7, 0x00, 0x00, 0xcf, 0xf9, 0x00, 0x00 +.byte 0x8b, 0xfb, 0x00, 0x00, 0x7e, 0xfc, 0x00, 0x00, 0x8e, 0xfd, 0x00, 0x00, 0x53, 0xff, 0x00, 0x00 +.byte 0x26, 0x02, 0x01, 0x00, 0xfa, 0x03, 0x01, 0x00, 0x23, 0x05, 0x01, 0x00, 0x00, 0x07, 0x01, 0x00 +.byte 0xe1, 0x08, 0x01, 0x00, 0xcc, 0x0a, 0x01, 0x00, 0xb7, 0x0d, 0x01, 0x00, 0xf5, 0x0e, 0x01, 0x00 +.byte 0x36, 0x00, 0x26, 0x01, 0x30, 0x34, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68 +.byte 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 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, 0xc8, 0x68, 0xf1, 0xc9, 0xd6 +.byte 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec, 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26, 0xed, 0x11 +.byte 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40, 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8, 0x63, 0xe1 +.byte 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69, 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd, 0xe2, 0x36 +.byte 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec, 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b, 0x70, 0x08 +.byte 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81, 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3, 0x11, 0xfe +.byte 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96, 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31, 0x93, 0xb6 +.byte 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5, 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56, 0x8a, 0x33 +.byte 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc, 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2, 0x0a, 0x98 +.byte 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48, 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6, 0xba, 0x9f +.byte 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32, 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78, 0x5d, 0x42 +.byte 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7, 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c, 0x6a, 0xbf +.byte 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77, 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87, 0xf7, 0x25 +.byte 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a, 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18, 0x63, 0x17 +.byte 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26, 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4, 0xe7, 0x63 +.byte 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb, 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62, 0x9f, 0x22 +.byte 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a, 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x39, 0x00, 0x26, 0x02, 0x30, 0x37, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f, 0x30, 0x1d +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65 +.byte 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x31, 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, 0xc2, 0xbe +.byte 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26, 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16, 0x91, 0x5c +.byte 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d, 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0, 0xec, 0x24 +.byte 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d, 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c, 0x79, 0xea +.byte 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac, 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a, 0x4d, 0x5f +.byte 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8, 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30, 0x16, 0x90 +.byte 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae, 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b, 0x06, 0x2a +.byte 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e, 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe, 0x4b, 0x8e +.byte 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34, 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f, 0xe2, 0xd3 +.byte 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36, 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18, 0x01, 0xfd +.byte 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d, 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35, 0xe1, 0xed +.byte 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09, 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c, 0x97, 0x18 +.byte 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72, 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d, 0xa0, 0xb4 +.byte 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1, 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53, 0x2d, 0xf0 +.byte 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80, 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd, 0xe0, 0x3e +.byte 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a, 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5, 0xbf, 0x72 +.byte 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc, 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc, 0x28, 0x4b +.byte 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d, 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb, 0x53, 0x05 +.byte 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16, 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17, 0x47, 0xd4 +.byte 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d, 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e, 0xd2, 0xf8 +.byte 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3, 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3, 0x37, 0x5f +.byte 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26, 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32, 0xc2, 0x6e +.byte 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68, 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a, 0x2b, 0xf3 +.byte 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2, 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53, 0xb9, 0xbb +.byte 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36, 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d, 0x32, 0x60 +.byte 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd, 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07, 0x7b, 0x81 +.byte 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7, 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17, 0x35, 0xe5 +.byte 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea, 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f, 0x9f, 0xb3 +.byte 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b, 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51, 0x12, 0x97 +.byte 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc, 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f, 0x62, 0xd4 +.byte 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58, 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16, 0x4b, 0xde +.byte 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a, 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3, 0x02, 0xa6 +.byte 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9, 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x3a, 0x00, 0x26, 0x02, 0x30, 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49, 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e, 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65, 0x6a, 0xb1 +.byte 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe, 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5, 0x79, 0x01 +.byte 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7, 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72, 0xa4, 0x2c +.byte 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1, 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56, 0x8e, 0xc5 +.byte 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d, 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3, 0x99, 0x15 +.byte 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26, 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb, 0x0c, 0xb2 +.byte 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78, 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e, 0x87, 0x2e +.byte 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d, 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2, 0xb7, 0xdd +.byte 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68, 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e, 0xc1, 0x46 +.byte 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55, 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1, 0x57, 0xb9 +.byte 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5, 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2, 0x3c, 0x20 +.byte 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90, 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e, 0x7c, 0x85 +.byte 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0, 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4, 0x03, 0xc8 +.byte 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09, 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f, 0xe1, 0xc4 +.byte 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39, 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9, 0xe0, 0x09 +.byte 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a, 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3, 0xfe, 0x26 +.byte 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9, 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69, 0x84, 0x83 +.byte 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b, 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50, 0x26, 0xca +.byte 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a, 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad, 0x10, 0xac +.byte 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b, 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47, 0xb5, 0xf1 +.byte 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53, 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb, 0xa9, 0x6f +.byte 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7, 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c, 0x8d, 0x06 +.byte 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0, 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3, 0xa2, 0xfa +.byte 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c, 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f, 0xeb, 0xde +.byte 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9, 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f, 0x0b, 0x86 +.byte 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5, 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb, 0xf0, 0xf6 +.byte 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6, 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04, 0x24, 0x4c +.byte 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a, 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2, 0x01, 0x40 +.byte 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf, 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad, 0x4c, 0x8a +.byte 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82, 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e, 0x8d, 0xbf +.byte 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3, 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72, 0x7e, 0x1c +.byte 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae, 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16, 0xec, 0x47 +.byte 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26, 0x01, 0x30, 0x39, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 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, 0xb2, 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3, 0x71 +.byte 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7, 0x58 +.byte 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a, 0x4e +.byte 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c, 0xf4 +.byte 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde, 0xd7 +.byte 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4, 0x45 +.byte 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0, 0x20 +.byte 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50, 0x38 +.byte 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96, 0xee +.byte 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba, 0x54 +.byte 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74, 0x70 +.byte 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32, 0x46 +.byte 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b, 0xf7 +.byte 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f, 0xdb +.byte 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c, 0x87 +.byte 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26, 0x8e +.byte 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26, 0x02 +.byte 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f, 0x2d +.byte 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13, 0xbc +.byte 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35, 0xd8 +.byte 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8, 0xc8 +.byte 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac, 0x3d +.byte 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac, 0x37, 0x44, 0x79, 0x85, 0x81, 0x82, 0xad +.byte 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04, 0xd1 +.byte 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae, 0x5c +.byte 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52, 0x1a +.byte 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c, 0x12 +.byte 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64, 0x74 +.byte 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27, 0x02 +.byte 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec, 0xae +.byte 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39, 0x86 +.byte 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba, 0x1c +.byte 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46, 0x27 +.byte 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4, 0xc5 +.byte 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e, 0xc5 +.byte 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9, 0xab +.byte 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69, 0xa1 +.byte 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10, 0x81 +.byte 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e, 0xda +.byte 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f, 0x6c +.byte 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32, 0xda +.byte 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa, 0xbe +.byte 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7, 0x29 +.byte 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95, 0x0b +.byte 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e, 0x80 +.byte 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9, 0x4d +.byte 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e, 0x02 +.byte 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1, 0x54 +.byte 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29, 0x66 +.byte 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x3b, 0x00, 0x5b, 0x00, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41 +.byte 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10 +.byte 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33 +.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, 0x29, 0x97, 0xa7, 0xc6, 0x41 +.byte 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2, 0x12 +.byte 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b, 0x98 +.byte 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45, 0x57, 0x7d +.byte 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb, 0x66, 0xde, 0x3b, 0x00, 0x78, 0x00, 0x30 +.byte 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f +.byte 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x34, 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, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b, 0xa8 +.byte 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00, 0xe8 +.byte 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa, 0xa3 +.byte 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3, 0xbd +.byte 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1, 0x2a +.byte 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e, 0xfa +.byte 0x2e, 0x5c, 0x3d, 0x00, 0x26, 0x02, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08 +.byte 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d +.byte 0x52, 0x43, 0x4d, 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, 0xba, 0x71, 0x80, 0x7a, 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13, 0x6d, 0xc0 +.byte 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c, 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9, 0x1a, 0xb7 +.byte 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6, 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7, 0x25, 0x5d +.byte 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17, 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17, 0x24, 0x58 +.byte 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4, 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91, 0x01, 0x91 +.byte 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77, 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43, 0xba, 0xac +.byte 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0, 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71, 0x5c, 0xb4 +.byte 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13, 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1, 0x20, 0x19 +.byte 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde, 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21, 0xe7, 0x1a +.byte 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30, 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10, 0xd7, 0x68 +.byte 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17, 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b, 0x3c, 0xd9 +.byte 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf, 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0, 0x96, 0xb2 +.byte 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa, 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe, 0x23, 0x35 +.byte 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b, 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22, 0xc3, 0x39 +.byte 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4, 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01, 0x05, 0x4a +.byte 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d, 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9, 0x18, 0xb7 +.byte 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c, 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5, 0x77, 0xc8 +.byte 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8, 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a, 0xc5, 0xe6 +.byte 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e, 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb, 0xe4, 0xcd +.byte 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68, 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c, 0x2b, 0x4e +.byte 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a, 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08, 0xcf, 0x87 +.byte 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9, 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e, 0x47, 0x96 +.byte 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9, 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d, 0x5f, 0xb8 +.byte 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49, 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07, 0xb3, 0x9b +.byte 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d, 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1, 0x89, 0xe3 +.byte 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90, 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59, 0x2d, 0xa8 +.byte 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd, 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e, 0x0e, 0x4a +.byte 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35, 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c, 0xac, 0x57 +.byte 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02, 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5, 0x7a, 0xd0 +.byte 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa, 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71, 0x08, 0xe9 +.byte 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3, 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2, 0x09, 0xe4 +.byte 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27, 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9, 0x6c, 0x56 +.byte 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3d, 0x00, 0x26, 0x01, 0x30, 0x3b, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49 +.byte 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xb7, 0x33, 0xb9, 0x7e, 0xc8 +.byte 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b, 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22, 0xd3, 0x64 +.byte 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61, 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54, 0x84, 0x4d +.byte 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b, 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f, 0x4a, 0xc3 +.byte 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1, 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24, 0x90, 0x8b +.byte 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3, 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee, 0x5b, 0x73 +.byte 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c, 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5, 0x2b, 0x00 +.byte 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed, 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6, 0x38, 0xcd +.byte 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a, 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d, 0x8f, 0x5f +.byte 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb, 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30, 0xa3, 0x43 +.byte 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed, 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e, 0xfe, 0x8f +.byte 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0, 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33, 0xb6, 0x7c +.byte 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e, 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28, 0xea, 0x78 +.byte 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b, 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82, 0x10, 0xe2 +.byte 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7, 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0, 0xba, 0x7a +.byte 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b, 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e, 0x32, 0x87 +.byte 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac, 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x3e, 0x00, 0x26, 0x01, 0x30, 0x3c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x44, 0x45, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f, 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6, 0xf3, 0x29 +.byte 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9, 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47, 0xb9, 0xbc +.byte 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8, 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35, 0xf4, 0xa9 +.byte 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62, 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7, 0x8a, 0xcc +.byte 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95, 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14, 0xc5, 0xb6 +.byte 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6, 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69, 0xcf, 0x03 +.byte 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74, 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73, 0x62, 0xbe +.byte 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03, 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02, 0x15, 0x0d +.byte 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5, 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3, 0x59, 0x98 +.byte 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74, 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35, 0x89, 0x10 +.byte 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2, 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d, 0xb4, 0x1c +.byte 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1, 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99, 0xb9, 0x70 +.byte 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc, 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e, 0xdd, 0x0b +.byte 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f, 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f, 0x53, 0xd6 +.byte 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91, 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55, 0x74, 0x9c +.byte 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f, 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0, 0x54, 0x22 +.byte 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 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, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x55, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6, 0x2b, 0x6f +.byte 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24, 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99, 0x9a, 0xa9 +.byte 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b, 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5, 0x4c, 0xa9 +.byte 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed, 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78, 0xbd, 0x92 +.byte 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93, 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5, 0x75, 0xf9 +.byte 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec, 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae, 0x0e, 0x1a +.byte 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b, 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c, 0xe6, 0x54 +.byte 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d, 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7, 0x68, 0xe2 +.byte 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11, 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a, 0x58, 0x0d +.byte 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c, 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f, 0xd1, 0x56 +.byte 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82, 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52, 0x87, 0xab +.byte 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d, 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d, 0x86, 0x6f +.byte 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f, 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60, 0xdc, 0x0b +.byte 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71, 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a, 0xe8, 0xd8 +.byte 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d, 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1, 0xb2, 0x58 +.byte 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed, 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32, 0x23, 0xb6 +.byte 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e, 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20, 0x2f, 0xdf +.byte 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7, 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec, 0xc7, 0x3f +.byte 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1, 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62, 0xd8, 0x0f +.byte 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73, 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8, 0x41, 0x96 +.byte 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f, 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba, 0x4a, 0x92 +.byte 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0, 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c, 0xaf, 0x8f +.byte 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21, 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5, 0xc3, 0x1a +.byte 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e, 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17, 0x6b, 0x26 +.byte 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18, 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0, 0xe5, 0x35 +.byte 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1, 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc, 0x83, 0x93 +.byte 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4, 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2, 0x47, 0xcd +.byte 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6, 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57, 0x7a, 0x88 +.byte 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29, 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e, 0x44, 0xd6 +.byte 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a, 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d, 0x46, 0x06 +.byte 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f, 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39, 0xcf, 0x3b +.byte 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47, 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc, 0xa6, 0x77 +.byte 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15, 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x3f, 0x00, 0x78, 0x00, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43 +.byte 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x45, 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, 0xde, 0x6f, 0xf8, 0x7f +.byte 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1, 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97, 0x80, 0xea +.byte 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68, 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24, 0x7a, 0x5c +.byte 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34, 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0, 0x37, 0x4b +.byte 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd, 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29, 0x87, 0x09 +.byte 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd, 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8, 0x02, 0x1c +.byte 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9, 0x44, 0x8d, 0xe4, 0x76, 0x3f, 0x00, 0x26, 0x02 +.byte 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69 +.byte 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65 +.byte 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 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 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4, 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0, 0xdd, 0x13 +.byte 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c, 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03, 0xb5, 0x8d +.byte 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf, 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf, 0x8e, 0xe4 +.byte 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02, 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd, 0x04, 0xe4 +.byte 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb, 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7, 0x0c, 0x70 +.byte 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc, 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e, 0xdf, 0x31 +.byte 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5, 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b, 0xa2, 0xe4 +.byte 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03, 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71, 0x3d, 0xd2 +.byte 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a, 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0, 0xab, 0x9b +.byte 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36, 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c, 0x3a, 0xfc +.byte 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8, 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f, 0x0b, 0x18 +.byte 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01, 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17, 0x02, 0x30 +.byte 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36, 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0, 0xf4, 0x31 +.byte 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2, 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a, 0x54, 0xcd +.byte 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7, 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e, 0x6d, 0x71 +.byte 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9, 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69, 0x7b, 0x41 +.byte 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1, 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc, 0x62, 0x52 +.byte 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1, 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d, 0x81, 0xef +.byte 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49, 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc, 0xcb, 0xb5 +.byte 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89, 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85, 0xbe, 0x4e +.byte 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78, 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37, 0x99, 0x8c +.byte 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11, 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b, 0xbe, 0xb5 +.byte 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91, 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4, 0x94, 0x0a +.byte 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b, 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56, 0x51, 0x35 +.byte 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76, 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a, 0xd0, 0x42 +.byte 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b, 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f, 0xf3, 0x66 +.byte 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43, 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60, 0x6f, 0x06 +.byte 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e, 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35, 0x57, 0x05 +.byte 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc, 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49, 0xed, 0xf5 +.byte 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2, 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf, 0x07, 0xfb +.byte 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10, 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a, 0x04, 0x9c +.byte 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7, 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9, 0x2b, 0x23 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x41, 0x00, 0x26, 0x01, 0x30, 0x3f, 0x31, 0x24, 0x30, 0x22, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20, 0x53, 0x69 +.byte 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f +.byte 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53, 0x54, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 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, 0xdf, 0xaf, 0xe9, 0x97, 0x50 +.byte 0x08, 0x83, 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c, 0x6b, 0x30 +.byte 0xca, 0x5b, 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8, 0x33, 0x76 +.byte 0x49, 0x2a, 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb, 0x65, 0xee +.byte 0xfc, 0xd3, 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77, 0xb0, 0x12 +.byte 0x7b, 0xb5, 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06, 0x32, 0x83 +.byte 0xa2, 0x7e, 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a, 0x31, 0xfd +.byte 0x50, 0xbd, 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea, 0x4b, 0x61 +.byte 0x81, 0xec, 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e, 0x0c, 0xda +.byte 0x09, 0x8e, 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab, 0x2e, 0xbd +.byte 0x70, 0xad, 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34, 0xd6, 0x30 +.byte 0x89, 0xff, 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c, 0x92, 0x1e +.byte 0x3d, 0x64, 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5, 0x26, 0xec +.byte 0x38, 0x55, 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5, 0x9a, 0x9b +.byte 0x8d, 0x1d, 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab, 0xda, 0x6e +.byte 0xf1, 0x3e, 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b, 0x19, 0x2a +.byte 0xb6, 0x29, 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x43, 0x00, 0x26, 0x02, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x52, 0x4f, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x43, 0x45 +.byte 0x52, 0x54, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f +.byte 0x54, 0x20, 0x43, 0x41, 0x20, 0x47, 0x32, 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, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d, 0x44, 0x74 +.byte 0x74, 0x87, 0xfe, 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91, 0xe7, 0x0b +.byte 0x6f, 0xce, 0x3b, 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7, 0x5e, 0x8f +.byte 0x57, 0xeb, 0xd3, 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6, 0x0f, 0xa9 +.byte 0x88, 0xd8, 0x2e, 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5, 0x16, 0x5f +.byte 0x6b, 0x5b, 0x00, 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f, 0x1d, 0x42 +.byte 0xe5, 0x8f, 0xcf, 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22, 0x67, 0xe4 +.byte 0x69, 0xb0, 0x68, 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef, 0xc4, 0xec +.byte 0x4b, 0xbd, 0x6a, 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab, 0xab, 0x35 +.byte 0x9a, 0x4c, 0xe4, 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0, 0x29, 0xd3 +.byte 0x5c, 0xf9, 0xc6, 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38, 0x40, 0xb0 +.byte 0xfe, 0x82, 0x44, 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15, 0xd3, 0xb6 +.byte 0x11, 0x69, 0x7b, 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23, 0x59, 0x9b +.byte 0xc9, 0x22, 0x84, 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb, 0xa6, 0x65 +.byte 0xf3, 0x69, 0x75, 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6, 0xd1, 0x4e +.byte 0xa8, 0xd9, 0x8a, 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9, 0xae, 0xe5 +.byte 0xcf, 0x0d, 0x6e, 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3, 0x20, 0x2f +.byte 0x7f, 0xfb, 0x14, 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3, 0x62, 0x5f +.byte 0xeb, 0x35, 0x4b, 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e, 0x86, 0xe2 +.byte 0xa3, 0x76, 0x8f, 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06, 0xff, 0x12 +.byte 0x46, 0xac, 0x78, 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15, 0x4f, 0x16 +.byte 0x89, 0x5b, 0xbd, 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb, 0x1f, 0x67 +.byte 0xc5, 0x45, 0x8e, 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b, 0x3d, 0xff +.byte 0x51, 0x77, 0x76, 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9, 0x50, 0x1f +.byte 0x1f, 0x7a, 0x99, 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7, 0x9c, 0x61 +.byte 0xb3, 0x35, 0x98, 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92, 0xcf, 0xd9 +.byte 0x12, 0x14, 0x64, 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3, 0xc9, 0xfa +.byte 0x99, 0xf7, 0x46, 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c, 0x50, 0xd8 +.byte 0x83, 0x65, 0x83, 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97, 0x6b, 0xd6 +.byte 0x5d, 0x13, 0xd3, 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d, 0x1e, 0xcb +.byte 0x9f, 0xa5, 0xa6, 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29, 0x13, 0x3e +.byte 0xa3, 0xfd, 0x4f, 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44, 0x4b, 0x8a +.byte 0x88, 0x44, 0x9c, 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26 +.byte 0x02, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x13, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65 +.byte 0x6d, 0x69, 0x75, 0x6d, 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, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd, 0xf5, 0x9f +.byte 0x8a, 0xe3, 0xf6, 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0, 0x33, 0x2a +.byte 0xdc, 0x8d, 0x20, 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68, 0xcf, 0x8e +.byte 0x51, 0xa3, 0x85, 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1, 0x97, 0x57 +.byte 0xd8, 0x48, 0x29, 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18, 0x9a, 0x1e +.byte 0x24, 0xa2, 0x4f, 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4, 0x58, 0xee +.byte 0x26, 0x4d, 0xc9, 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15, 0xe5, 0xf8 +.byte 0x8c, 0xc8, 0xd9, 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25, 0xb7, 0xba +.byte 0xaa, 0x55, 0x41, 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf, 0x66, 0xc7 +.byte 0xe9, 0xff, 0x2b, 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89, 0xf8, 0x7a +.byte 0x00, 0x56, 0xde, 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf, 0x0b, 0x77 +.byte 0x32, 0xeb, 0x62, 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06, 0x7a, 0x30 +.byte 0xc8, 0x29, 0xbf, 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f, 0xbc, 0x53 +.byte 0x12, 0x17, 0x9c, 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25, 0x49, 0x9d +.byte 0x18, 0xf2, 0xee, 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc, 0xef, 0x2e +.byte 0x92, 0x90, 0x05, 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a, 0xd8, 0xf9 +.byte 0x73, 0xa7, 0x2c, 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68, 0x09, 0x2f +.byte 0xb8, 0xf8, 0xdc, 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a, 0xa7, 0x38 +.byte 0x48, 0x6c, 0xb3, 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78, 0x77, 0xba +.byte 0x43, 0xea, 0x48, 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c, 0x58, 0x5c +.byte 0xf1, 0xee, 0xa4, 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd, 0x3c, 0xb3 +.byte 0xd3, 0x48, 0x4b, 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65, 0x3e, 0xa4 +.byte 0x1e, 0xc1, 0x07, 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55, 0x21, 0xef +.byte 0xba, 0xdc, 0x4c, 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47, 0x46, 0xd2 +.byte 0x08, 0x99, 0x16, 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01, 0x1e, 0x3c +.byte 0x48, 0x56, 0x49, 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1, 0x6f, 0x66 +.byte 0xe9, 0x72, 0x47, 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c, 0xc5, 0x94 +.byte 0x7e, 0x61, 0xc4, 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77, 0xb3, 0xbc +.byte 0x60, 0x69, 0x56, 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd, 0x48, 0xed +.byte 0x84, 0x1f, 0x7e, 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53, 0x90, 0x78 +.byte 0x4e, 0x2d, 0x1a, 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0, 0x00, 0xe2 +.byte 0x2e, 0x6b, 0xea, 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8, 0xdc, 0xf6 +.byte 0xb2, 0x79, 0x8a, 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x44, 0x00, 0x26, 0x02, 0x30, 0x42 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43, 0x56, 0x52 +.byte 0x41, 0x49, 0x5a, 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x50 +.byte 0x4b, 0x49, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x04, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x45, 0x53, 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, 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66, 0x9a, 0x74 +.byte 0x5f, 0xd0, 0xd9, 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33, 0xc2, 0x44 +.byte 0xa3, 0xdf, 0x9a, 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f, 0xbb, 0xc8 +.byte 0x0c, 0x8e, 0x6a, 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c, 0xf0, 0x63 +.byte 0xb3, 0x90, 0x5a, 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1, 0x01, 0x72 +.byte 0x84, 0xb0, 0x7d, 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6, 0x0e, 0x82 +.byte 0xd2, 0x45, 0x85, 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1, 0xc2, 0xcb +.byte 0x03, 0xbe, 0x8c, 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a, 0xe8, 0xe9 +.byte 0x37, 0xa7, 0x18, 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17, 0x84, 0x18 +.byte 0xa5, 0xc8, 0xda, 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a, 0x9d, 0x0a +.byte 0xa1, 0x57, 0x43, 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b, 0xd8, 0xbc +.byte 0x4c, 0x8d, 0x28, 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae, 0xed, 0xae +.byte 0x03, 0x22, 0xb8, 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce, 0x0a, 0x66 +.byte 0x9d, 0xd1, 0x40, 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f, 0xc0, 0xf2 +.byte 0x9f, 0xf8, 0x7b, 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23, 0xab, 0xc6 +.byte 0xc1, 0x0f, 0x92, 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45, 0x13, 0x84 +.byte 0xe6, 0x26, 0x5e, 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06, 0xb8, 0xf0 +.byte 0x63, 0x84, 0x02, 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83, 0x25, 0xea +.byte 0xd6, 0xc7, 0x97, 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10, 0x3e, 0x97 +.byte 0x3e, 0x6e, 0x29, 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa, 0xa4, 0xc6 +.byte 0x42, 0xeb, 0x41, 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b, 0xf3, 0x23 +.byte 0x36, 0xc7, 0xfe, 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff, 0x08, 0x8f +.byte 0x80, 0xbf, 0xc0, 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3, 0x31, 0xb3 +.byte 0x40, 0xf1, 0xe8, 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58, 0x9b, 0x7c +.byte 0xfa, 0xd4, 0xf3, 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1, 0xf5, 0xcd +.byte 0x5a, 0x19, 0xfc, 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8, 0xf9, 0xb4 +.byte 0x8b, 0x50, 0xa3, 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87, 0xfa, 0xd5 +.byte 0x2d, 0x29, 0x2a, 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb, 0xce, 0x49 +.byte 0xf5, 0x8d, 0x1f, 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93, 0x86, 0x61 +.byte 0xd6, 0xe1, 0x75, 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25, 0xd6, 0x0a +.byte 0x5a, 0x7a, 0x93, 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde, 0x4f, 0xdc +.byte 0xe0, 0xb3, 0xac, 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0, 0x29, 0x71 +.byte 0x0a, 0xc0, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x45, 0x00, 0x26, 0x02, 0x30, 0x43, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61 +.byte 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 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, 0xbd, 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae, 0x6c, 0xb7 +.byte 0x70, 0xb4, 0x41, 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b, 0xb0, 0x66 +.byte 0x8b, 0x6c, 0x48, 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23, 0x59, 0xc9 +.byte 0x8e, 0xbc, 0x58, 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63, 0x5a, 0xba +.byte 0x9f, 0xa3, 0x0b, 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb, 0xcf, 0x6e +.byte 0x6c, 0x80, 0x87, 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5, 0x6a, 0xac +.byte 0x13, 0x2c, 0x33, 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b, 0xad, 0x00 +.byte 0x52, 0x7f, 0xcf, 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe, 0x96, 0x4c +.byte 0x43, 0x7e, 0x55, 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95, 0x6b, 0x2a +.byte 0xb0, 0x94, 0x77, 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7, 0xcb, 0x5b +.byte 0x9a, 0x70, 0xec, 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb, 0x05, 0xc6 +.byte 0x14, 0x27, 0x2f, 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7, 0x0b, 0x1e +.byte 0x58, 0xd1, 0x27, 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60, 0xfc, 0x4c +.byte 0xbc, 0x35, 0x53, 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c, 0xf5, 0xef +.byte 0x5e, 0xc2, 0x6c, 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb, 0x4c, 0xe8 +.byte 0xb0, 0x09, 0xc2, 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac, 0xf5, 0x06 +.byte 0xa0, 0xf7, 0x36, 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea, 0xe9, 0x1a +.byte 0x0a, 0xc8, 0x0d, 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22, 0x90, 0x27 +.byte 0x3d, 0x2a, 0xe8, 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde, 0x65, 0x24 +.byte 0xa4, 0x5d, 0xea, 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94, 0x36, 0x01 +.byte 0x73, 0xca, 0x06, 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a, 0xc9, 0x44 +.byte 0x47, 0xb8, 0x51, 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a, 0x7f, 0xbc +.byte 0xa6, 0xef, 0x1f, 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19, 0x66, 0x3c +.byte 0x27, 0x62, 0x29, 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4, 0xe2, 0x8e +.byte 0x48, 0x5a, 0x00, 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9, 0x39, 0x4f +.byte 0xf6, 0x6f, 0x04, 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59, 0xb4, 0xd8 +.byte 0x8e, 0x33, 0x84, 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c, 0x68, 0xf9 +.byte 0xee, 0xd5, 0x17, 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d, 0xaf, 0xd1 +.byte 0xee, 0x3c, 0x17, 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05, 0x07, 0xdc +.byte 0x34, 0x42, 0x12, 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6, 0x48, 0xd1 +.byte 0xb3, 0x9b, 0xf3, 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76, 0x63, 0xe6 +.byte 0x02, 0xc6, 0x22, 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0, 0x3c, 0x29 +.byte 0xcf, 0x57, 0x02, 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x02, 0x30, 0x44, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e, 0x6c, 0x61 +.byte 0x6e, 0x64, 0x20, 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x10, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76 +.byte 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xb2, 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2, 0x77, 0x69 +.byte 0xe7, 0xce, 0x9d, 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c, 0x27, 0xac +.byte 0x8e, 0x00, 0xba, 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e, 0xb2, 0xaf +.byte 0xc7, 0xd5, 0x62, 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2, 0x36, 0xe9 +.byte 0x0c, 0x85, 0xf6, 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33, 0xa5, 0xcb +.byte 0x31, 0xb8, 0x3a, 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea, 0xf4, 0x7b +.byte 0x03, 0xad, 0x68, 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d, 0xcd, 0x63 +.byte 0xc3, 0xa3, 0xf6, 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9, 0x3d, 0xa5 +.byte 0x74, 0x96, 0xfe, 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44, 0xf1, 0x0c +.byte 0x77, 0x15, 0x92, 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1, 0xa0, 0xb3 +.byte 0x96, 0xb2, 0x3a, 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62, 0xc4, 0x58 +.byte 0xb3, 0x79, 0xc5, 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61, 0x38, 0xf1 +.byte 0x59, 0x3d, 0x8e, 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9, 0x02, 0x65 +.byte 0xb4, 0x8e, 0x5c, 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3, 0x7f, 0x99 +.byte 0x45, 0x99, 0x15, 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc, 0x69, 0x12 +.byte 0x86, 0xc2, 0x17, 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92, 0x66, 0xce +.byte 0xa4, 0x53, 0xe5, 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8, 0xe3, 0x7c +.byte 0xde, 0xe3, 0xff, 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9, 0x25, 0x05 +.byte 0xeb, 0x48, 0xf8, 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c, 0x44, 0xca +.byte 0x26, 0xe1, 0x73, 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6, 0xb9, 0x24 +.byte 0xb3, 0x6b, 0x44, 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c, 0xb6, 0x33 +.byte 0x57, 0x7a, 0x95, 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02, 0x05, 0x86 +.byte 0x2e, 0x7c, 0x2d, 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f, 0xde, 0x20 +.byte 0xd8, 0x5b, 0x7e, 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d, 0x37, 0xa2 +.byte 0x0e, 0x2e, 0x3d, 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e, 0xdc, 0xc6 +.byte 0xe9, 0x12, 0x4e, 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6, 0xa6, 0xc9 +.byte 0xf2, 0x2d, 0xb9, 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa, 0xc0, 0xad +.byte 0x1d, 0x98, 0x14, 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d, 0xb7, 0x1b +.byte 0x30, 0x19, 0xc4, 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8, 0x05, 0xba +.byte 0xf1, 0xaa, 0x1c, 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8, 0x76, 0x62 +.byte 0x47, 0x8b, 0x10, 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05, 0xcb, 0xdc +.byte 0xc1, 0x4a, 0x5e, 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb, 0xc1, 0xca +.byte 0x42, 0xd5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61 +.byte 0x6c, 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, 0xf6, 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb, 0x1f, 0x01 +.byte 0xb2, 0xe3, 0x73, 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce, 0xc3, 0xb7 +.byte 0xab, 0x2c, 0x4f, 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2, 0x8f, 0x1f +.byte 0x1e, 0x86, 0x19, 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85, 0x35, 0x79 +.byte 0x32, 0x2d, 0xbb, 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71, 0x5f, 0xe9 +.byte 0x42, 0xbe, 0x94, 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6, 0x2b, 0x6d +.byte 0xad, 0x05, 0xf0, 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b, 0x47, 0xa5 +.byte 0x23, 0x5b, 0x7a, 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1, 0xd6, 0x28 +.byte 0x89, 0xcf, 0x94, 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0, 0x0b, 0x31 +.byte 0xe2, 0x2b, 0x26, 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a, 0x05, 0xf3 +.byte 0xbd, 0x9b, 0x69, 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07, 0x02, 0xc9 +.byte 0x37, 0xfd, 0xc7, 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4, 0xb5, 0xc8 +.byte 0x7a, 0x79, 0xd9, 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66, 0x81, 0x35 +.byte 0xaf, 0x44, 0xba, 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e, 0x50, 0x4e +.byte 0x7a, 0xe3, 0x3a, 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a, 0xab, 0x57 +.byte 0x03, 0x22, 0x28, 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3, 0xdc, 0x0e +.byte 0x79, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e +.byte 0x67, 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, 0xb4, 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52, 0xa0, 0xeb +.byte 0xa3, 0xcf, 0x79, 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65, 0x8f, 0x67 +.byte 0x64, 0xe2, 0x06, 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d, 0xf2, 0x60 +.byte 0x9d, 0x30, 0x4e, 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab, 0x33, 0x77 +.byte 0x35, 0x44, 0xd8, 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47, 0xa1, 0x6a +.byte 0x69, 0x8b, 0xd9, 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb, 0x9a, 0x90 +.byte 0x23, 0x6b, 0x9a, 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa, 0xab, 0x53 +.byte 0x2b, 0xdc, 0xbb, 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c, 0xd4, 0x6a +.byte 0xad, 0x22, 0xba, 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24, 0x4b, 0x40 +.byte 0x44, 0xb1, 0x1b, 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8, 0xfc, 0xf1 +.byte 0xf1, 0x23, 0x53, 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d, 0xbd, 0x95 +.byte 0xd4, 0xce, 0xbe, 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00, 0x29, 0xeb +.byte 0x3c, 0x46, 0xf0, 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e, 0x14, 0x37 +.byte 0x42, 0x04, 0xa3, 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c, 0x0a, 0xe3 +.byte 0xa9, 0x66, 0x89, 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77, 0x46, 0xc8 +.byte 0x7d, 0xf6, 0xf4, 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c, 0x16, 0xbd +.byte 0xb4, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 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, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12 +.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29, 0x8a, 0xf0 +.byte 0x0f, 0x81, 0xc8, 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85, 0xf3, 0x2f +.byte 0x81, 0xad, 0x32, 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e, 0x1c, 0x18 +.byte 0x3a, 0x5c, 0x9c, 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54, 0x11, 0xcb +.byte 0xed, 0xab, 0xe0, 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b, 0x2d, 0xfd +.byte 0xe9, 0x3e, 0xef, 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d, 0xfd, 0xa4 +.byte 0xda, 0xff, 0x9e, 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba, 0x5b, 0x2b +.byte 0x1c, 0x7a, 0x35, 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60, 0x2b, 0xef +.byte 0xd7, 0x60, 0xc3, 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11, 0x13, 0xc4 +.byte 0x9c, 0x77, 0x76, 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2, 0x05, 0xe6 +.byte 0xb9, 0x56, 0xc1, 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07, 0x95, 0x8a +.byte 0x4b, 0xdf, 0x8f, 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab, 0x0c, 0xf9 +.byte 0x85, 0xeb, 0x44, 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5, 0x73, 0xaf +.byte 0x6b, 0xb4, 0x7e, 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95, 0x2d, 0x42 +.byte 0x87, 0xd7, 0xd5, 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4, 0xf8, 0x89 +.byte 0x3f, 0xd1, 0x75, 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc, 0x6d, 0xde +.byte 0x89, 0xc2, 0x65, 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac, 0x92, 0xdb +.byte 0xea, 0xfe, 0x79, 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b, 0xe5, 0x1f +.byte 0xfb, 0x9a, 0x9f, 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9, 0xb4, 0x76 +.byte 0x06, 0x52, 0xe6, 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b, 0x20, 0x19 +.byte 0x02, 0xe8, 0x74, 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67, 0xc1, 0x0e +.byte 0x61, 0x60, 0x88, 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1, 0x23, 0x54 +.byte 0xdf, 0x44, 0x76, 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf, 0x35, 0x1d +.byte 0xdc, 0xa1, 0x77, 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff, 0xe5, 0x80 +.byte 0xd7, 0x0b, 0x63, 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97, 0xb3, 0xd2 +.byte 0xa2, 0xb5, 0xbe, 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37, 0xb9, 0x86 +.byte 0x73, 0x33, 0xd7, 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1, 0xd1, 0xba +.byte 0x67, 0x5f, 0x95, 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a, 0x4c, 0xb2 +.byte 0x04, 0xd2, 0xab, 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9, 0x91, 0xda +.byte 0x0c, 0x8f, 0x64, 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d, 0x3a, 0xd6 +.byte 0xfe, 0x7d, 0x5b, 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3, 0x44, 0x32 +.byte 0x35, 0x09, 0x62, 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21, 0xe3, 0xf8 +.byte 0xeb, 0x1d, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c +.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x33, 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, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3, 0x4d, 0xee +.byte 0xfe, 0xed, 0xc7, 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb, 0x0d, 0x59 +.byte 0x91, 0x74, 0xcf, 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d, 0x91, 0x68 +.byte 0xd8, 0x20, 0x0e, 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7, 0x3f, 0x99 +.byte 0x1a, 0xcd, 0xeb, 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f, 0xfc, 0xfd +.byte 0x70, 0x8f, 0x0b, 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29, 0x76, 0xff +.byte 0xb1, 0x56, 0x79, 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68, 0xa4, 0x01 +.byte 0x4f, 0x0f, 0xa4, 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab, 0x58, 0x57 +.byte 0xe7, 0x54, 0x86, 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c, 0xa3, 0x3e +.byte 0xda, 0xfb, 0x82, 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce, 0xd0, 0x13 +.byte 0x4e, 0xff, 0xbf, 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55, 0xeb, 0xb1 +.byte 0xbb, 0x9d, 0xfb, 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5, 0xcb, 0xa1 +.byte 0x3f, 0x42, 0x69, 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61, 0x91, 0xfd +.byte 0xa6, 0xae, 0x4e, 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04, 0xd0, 0xc8 +.byte 0x9c, 0x88, 0xdb, 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78, 0xb6, 0xee +.byte 0xdc, 0x80, 0xb1, 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d, 0xb7, 0xd5 +.byte 0xce, 0x9c, 0xc2, 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f, 0xae, 0x7d +.byte 0x9f, 0xf8, 0xde, 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1, 0x5f, 0x26 +.byte 0xe1, 0x88, 0x4d, 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7, 0x3b, 0x84 +.byte 0x89, 0x93, 0xc4, 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2, 0xee, 0x7b +.byte 0xba, 0x52, 0x42, 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97, 0xfc, 0x9d +.byte 0x3f, 0x0a, 0x29, 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf, 0x8b, 0x99 +.byte 0xbe, 0xac, 0x9b, 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8, 0xf6, 0xc7 +.byte 0xee, 0x97, 0x14, 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60, 0x84, 0xa6 +.byte 0xe9, 0x2a, 0x76, 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0, 0x73, 0x63 +.byte 0xd9, 0x6a, 0x92, 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30, 0xfc, 0x09 +.byte 0xed, 0x68, 0x22, 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f, 0x2a, 0xdd +.byte 0xca, 0xe1, 0x90, 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93, 0xa0, 0x9c +.byte 0x8c, 0x19, 0xff, 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1, 0x70, 0x8f +.byte 0x2c, 0x0a, 0xe5, 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32, 0xe6, 0x13 +.byte 0x5c, 0x6b, 0xfe, 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba, 0x7d, 0x48 +.byte 0x3e, 0xa8, 0x69, 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d, 0x25, 0x4b +.byte 0xda, 0xff, 0x40, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x41, 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x53, 0x77 +.byte 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e, 0xa9, 0x50 +.byte 0x2d, 0x16, 0x44, 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13, 0x2a, 0xbc +.byte 0x65, 0x57, 0x82, 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f, 0xfc, 0xef +.byte 0xa2, 0xd0, 0xc0, 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28, 0x58, 0x00 +.byte 0xa3, 0x47, 0xc7, 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55, 0xcc, 0x8b +.byte 0xc1, 0x57, 0x1f, 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae, 0x7e, 0x6d +.byte 0xba, 0x81, 0x1c, 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84, 0xdb, 0x52 +.byte 0x2c, 0xf3, 0x0e, 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e, 0xd8, 0x3e +.byte 0xe6, 0x18, 0x37, 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f, 0x9c, 0xe9 +.byte 0xb3, 0x3c, 0x2b, 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60, 0xbd, 0xdd +.byte 0xb5, 0x99, 0x64, 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c, 0xe0, 0x62 +.byte 0x10, 0x02, 0x9f, 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba, 0x84, 0x7a +.byte 0x60, 0x3c, 0x6a, 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5, 0x50, 0x86 +.byte 0xcb, 0xb4, 0xaf, 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c, 0xa8, 0xee +.byte 0xbe, 0xa6, 0xe5, 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22, 0x5d, 0x32 +.byte 0x6a, 0x97, 0x97, 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a, 0xc5, 0x52 +.byte 0x89, 0xf9, 0x24, 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69, 0x2b, 0xd1 +.byte 0x02, 0x24, 0xf2, 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7, 0x6d, 0x30 +.byte 0x37, 0x90, 0x2a, 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5, 0xcb, 0x34 +.byte 0x89, 0x92, 0xf1, 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb, 0x0c, 0x0c +.byte 0x0b, 0x7c, 0x0b, 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d, 0xb2, 0x32 +.byte 0xcc, 0xd8, 0x17, 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd, 0x97, 0x3e +.byte 0x29, 0x75, 0xe7, 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d, 0xbc, 0x0d +.byte 0x50, 0xca, 0x03, 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf, 0x72, 0x14 +.byte 0x69, 0x0e, 0xa5, 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b, 0x62, 0x20 +.byte 0x10, 0x67, 0x39, 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20, 0x83, 0xb5 +.byte 0x8c, 0x4a, 0x56, 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3, 0xe2, 0x68 +.byte 0x6e, 0x7d, 0x8d, 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80, 0xae, 0xaa +.byte 0x56, 0x97, 0x6f, 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91, 0xb6, 0x1c +.byte 0x8c, 0x26, 0xda, 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c, 0x4c, 0x80 +.byte 0x8f, 0x77, 0x7b, 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e, 0x54, 0x6d +.byte 0x98, 0xe0, 0xe1, 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47, 0x19, 0x9d +.byte 0xeb, 0xe6, 0x6b, 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x78, 0x00, 0x30, 0x45 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x41, 0x66 +.byte 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75 +.byte 0x6d, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d, 0x30, 0x5e +.byte 0x1b, 0x15, 0x9d, 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca, 0x15, 0x1c +.byte 0xcd, 0x62, 0xf3, 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc, 0x12, 0xea +.byte 0xf4, 0x14, 0x5f, 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43, 0x78, 0xac +.byte 0xd0, 0x37, 0xc3, 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8, 0x3d, 0x2e +.byte 0x2f, 0x78, 0xc4, 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95, 0x1d, 0x4e +.byte 0x18, 0x42, 0x95, 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x48, 0x00, 0x78 +.byte 0x00, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x45 +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x9c, 0x0e, 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5, 0x46, 0xa7 +.byte 0xad, 0x32, 0x19, 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a, 0x10, 0xc7 +.byte 0xda, 0x89, 0xb0, 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea, 0xbe, 0xb2 +.byte 0x80, 0x2b, 0xcd, 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70, 0x08, 0x00 +.byte 0x75, 0xea, 0x93, 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec, 0x92, 0x2f +.byte 0x53, 0x84, 0xdb, 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a, 0x81, 0x3c +.byte 0x20, 0x48, 0x00, 0x26, 0x02, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31 +.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 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, 0xac, 0xac +.byte 0x74, 0x32, 0xe8, 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d, 0x45, 0xba +.byte 0x29, 0x88, 0xb2, 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39, 0xa1, 0x55 +.byte 0xe9, 0x67, 0x34, 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b, 0x5e, 0xe1 +.byte 0x1d, 0xa9, 0xb7, 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60, 0x40, 0x1f +.byte 0xa6, 0xb0, 0xb6, 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc, 0x62, 0x05 +.byte 0x02, 0x16, 0xbf, 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2, 0xcb, 0xd5 +.byte 0xa6, 0xbb, 0x0c, 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab, 0x74, 0x42 +.byte 0xef, 0xf0, 0x74, 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf, 0x5e, 0x87 +.byte 0x0a, 0x40, 0xfb, 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1, 0x8f, 0xd6 +.byte 0xae, 0xd5, 0x7f, 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b, 0x27, 0xd0 +.byte 0x86, 0xd0, 0x1c, 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2, 0xad, 0xef +.byte 0xf3, 0x84, 0x4b, 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b, 0xd6, 0x27 +.byte 0x71, 0x27, 0xed, 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a, 0xcc, 0x3f +.byte 0x0a, 0xfa, 0x46, 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb, 0x5d, 0xf6 +.byte 0xb4, 0x6a, 0xb3, 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14, 0xf9, 0x81 +.byte 0xed, 0x65, 0x16, 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3, 0x2b, 0xc0 +.byte 0x9d, 0xf9, 0x14, 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd, 0x78, 0x38 +.byte 0x9a, 0xeb, 0x42, 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6, 0x82, 0xb5 +.byte 0xf3, 0x96, 0xdd, 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b, 0x2c, 0xd4 +.byte 0x72, 0x73, 0x43, 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9, 0xc0, 0x90 +.byte 0x60, 0x37, 0x45, 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74, 0x5d, 0x42 +.byte 0xbe, 0x06, 0xf5, 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07, 0x4d, 0x40 +.byte 0x7e, 0x24, 0xc5, 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23, 0xfa, 0x27 +.byte 0x71, 0xc9, 0xdf, 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c, 0x5f, 0x29 +.byte 0x63, 0x31, 0x59, 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d, 0x53, 0xa6 +.byte 0x7e, 0x15, 0xfc, 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7, 0x6b, 0x19 +.byte 0xcb, 0xf3, 0x7b, 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d, 0x1c, 0xa6 +.byte 0x6e, 0x0e, 0xe9, 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f, 0xb1, 0x54 +.byte 0x7b, 0xfe, 0x6a, 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07, 0x21, 0x6b +.byte 0x81, 0x8f, 0xdb, 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b, 0x36, 0x93 +.byte 0xe8, 0x3d, 0xbd, 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf, 0x98, 0xa8 +.byte 0x06, 0xc2, 0xf8, 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x32 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xc4, 0xf1, 0x87, 0x7f, 0xd3, 0x78, 0x31, 0xf7, 0x38, 0xc9, 0xf8, 0xc3, 0x99, 0x43, 0xbc +.byte 0xc7, 0xf7, 0xbc, 0x37, 0xe7, 0x4e, 0x71, 0xba, 0x4b, 0x8f, 0xa5, 0x73, 0x1d, 0x5c, 0x6e, 0x98 +.byte 0xae, 0x03, 0x57, 0xae, 0x38, 0x37, 0x43, 0x2f, 0x17, 0x3d, 0x1f, 0xc8, 0xce, 0x68, 0x10, 0xc1 +.byte 0x78, 0xae, 0x19, 0x03, 0x2b, 0x10, 0xfa, 0x2c, 0x79, 0x83, 0xf6, 0xe8, 0xb9, 0x68, 0xb9, 0x55 +.byte 0xf2, 0x04, 0x44, 0xa7, 0x39, 0xf9, 0xfc, 0x04, 0x8b, 0x1e, 0xf1, 0xa2, 0x4d, 0x27, 0xf9, 0x61 +.byte 0x7b, 0xba, 0xb7, 0xe5, 0xa2, 0x13, 0xb6, 0xeb, 0x61, 0x3e, 0xd0, 0x6c, 0xd1, 0xe6, 0xfb, 0xfa +.byte 0x5e, 0xed, 0x1d, 0xb4, 0x9e, 0xa0, 0x35, 0x5b, 0xa1, 0x92, 0xcb, 0xf0, 0x49, 0x92, 0xfe, 0x85 +.byte 0x0a, 0x05, 0x3e, 0xe6, 0xd9, 0x0b, 0xe2, 0x4f, 0xbb, 0xdc, 0x95, 0x37, 0xfc, 0x91, 0xe9, 0x32 +.byte 0x35, 0x22, 0xd1, 0x1f, 0x3a, 0x4e, 0x27, 0x85, 0x9d, 0xb0, 0x15, 0x94, 0x32, 0xda, 0x61, 0x0d +.byte 0x47, 0x4d, 0x60, 0x42, 0xae, 0x92, 0x47, 0xe8, 0x83, 0x5a, 0x50, 0x58, 0xe9, 0x8a, 0x8b, 0xb9 +.byte 0x5d, 0xa1, 0xdc, 0xdd, 0x99, 0x4a, 0x1f, 0x36, 0x67, 0xbb, 0x48, 0xe4, 0x83, 0xb6, 0x37, 0xeb +.byte 0x48, 0x3a, 0xaf, 0x0f, 0x67, 0x8f, 0x17, 0x07, 0xe8, 0x04, 0xca, 0xef, 0x6a, 0x31, 0x87, 0xd4 +.byte 0xc0, 0xb6, 0xf9, 0x94, 0x71, 0x7b, 0x67, 0x64, 0xb8, 0xb6, 0x91, 0x4a, 0x42, 0x7b, 0x65, 0x2e +.byte 0x30, 0x6a, 0x0c, 0xf5, 0x90, 0xee, 0x95, 0xe6, 0xf2, 0xcd, 0x82, 0xec, 0xd9, 0xa1, 0x4a, 0xec +.byte 0xf6, 0xb2, 0x4b, 0xe5, 0x45, 0x85, 0xe6, 0x6d, 0x78, 0x93, 0x04, 0x2e, 0x9c, 0x82, 0x6d, 0x36 +.byte 0xa9, 0xc4, 0x31, 0x64, 0x1f, 0x86, 0x83, 0x0b, 0x2a, 0xf4, 0x35, 0x0a, 0x78, 0xc9, 0x55, 0xcf +.byte 0x41, 0xb0, 0x47, 0xe9, 0x30, 0x9f, 0x99, 0xbe, 0x61, 0xa8, 0x06, 0x84, 0xb9, 0x28, 0x7a, 0x5f +.byte 0x38, 0xd9, 0x1b, 0xa9, 0x38, 0xb0, 0x83, 0x7f, 0x73, 0xc1, 0xc3, 0x3b, 0x48, 0x2a, 0x82, 0x0f +.byte 0x21, 0x9b, 0xb8, 0xcc, 0xa8, 0x35, 0xc3, 0x84, 0x1b, 0x83, 0xb3, 0x3e, 0xbe, 0xa4, 0x95, 0x69 +.byte 0x01, 0x3a, 0x89, 0x00, 0x78, 0x04, 0xd9, 0xc9, 0xf4, 0x99, 0x19, 0xab, 0x56, 0x7e, 0x5b, 0x8b +.byte 0x86, 0x39, 0x15, 0x91, 0xa4, 0x10, 0x2c, 0x09, 0x32, 0x80, 0x60, 0xb3, 0x93, 0xc0, 0x2a, 0xb6 +.byte 0x18, 0x0b, 0x9d, 0x7e, 0x8d, 0x49, 0xf2, 0x10, 0x4a, 0x7f, 0xf9, 0xd5, 0x46, 0x2f, 0x19, 0x92 +.byte 0xa3, 0x99, 0xa7, 0x26, 0xac, 0xbb, 0x8c, 0x3c, 0xe6, 0x0e, 0xbc, 0x47, 0x07, 0xdc, 0x73, 0x51 +.byte 0xf1, 0x70, 0x64, 0x2f, 0x08, 0xf9, 0xb4, 0x47, 0x1d, 0x30, 0x6c, 0x44, 0xea, 0x29, 0x37, 0x85 +.byte 0x92, 0x68, 0x66, 0xbc, 0x83, 0x38, 0xfe, 0x7b, 0x39, 0x2e, 0xd3, 0x50, 0xf0, 0x1f, 0xfb, 0x5e +.byte 0x60, 0xb6, 0xa9, 0xa6, 0xfa, 0x27, 0x41, 0xf1, 0x9b, 0x18, 0x72, 0xf2, 0xf5, 0x84, 0x74, 0x4a +.byte 0xc9, 0x67, 0xc4, 0x54, 0xae, 0x48, 0x64, 0xdf, 0x8c, 0xd1, 0x6e, 0xb0, 0x1d, 0xe1, 0x07, 0x8f +.byte 0x08, 0x1e, 0x99, 0x9c, 0x71, 0xe9, 0x4c, 0xd8, 0xa5, 0xf7, 0x47, 0x12, 0x1f, 0x74, 0xd1, 0x51 +.byte 0x9e, 0x86, 0xf3, 0xc2, 0xa2, 0x23, 0x40, 0x0b, 0x73, 0xdb, 0x4b, 0xa6, 0xe7, 0x73, 0x06, 0x8c +.byte 0xc1, 0xa0, 0xe9, 0xc1, 0x59, 0xac, 0x46, 0xfa, 0xe6, 0x2f, 0xf8, 0xcf, 0x71, 0x9c, 0x46, 0x6d +.byte 0xb9, 0xc4, 0x15, 0x8d, 0x38, 0x79, 0x03, 0x45, 0x48, 0xef, 0xc4, 0x5d, 0xd7, 0x08, 0xee, 0x87 +.byte 0x39, 0x22, 0x86, 0xb2, 0x0d, 0x0f, 0x58, 0x43, 0xf7, 0x71, 0xa9, 0x48, 0x2e, 0xfd, 0xea, 0xd6 +.byte 0x1f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74, 0x65, 0x6e +.byte 0x64, 0x65, 0x64, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xa9, 0x09, 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64, 0xaa, 0x1e +.byte 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91, 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00, 0x7a, 0xec +.byte 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5, 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58, 0x86, 0xd5 +.byte 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c, 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8, 0xad, 0x81 +.byte 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb, 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e, 0x96, 0xc8 +.byte 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f, 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60, 0xb4, 0x77 +.byte 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52, 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84, 0xd0, 0x1f +.byte 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf, 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01, 0x3e, 0x79 +.byte 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa, 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae, 0xeb, 0xdc +.byte 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85, 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c, 0x97, 0x64 +.byte 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15, 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32, 0x33, 0x11 +.byte 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f, 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1, 0x6c, 0xa4 +.byte 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f, 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3, 0x2c, 0x2e +.byte 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e, 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8, 0xb2, 0xcd +.byte 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93, 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94, 0xb3, 0x25 +.byte 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf, 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98, 0x0b, 0x77 +.byte 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62, 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f, 0x0e, 0x65 +.byte 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80, 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7, 0x01, 0x08 +.byte 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3, 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54, 0x7f, 0x38 +.byte 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33, 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a, 0x5e, 0xec +.byte 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62, 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a, 0x2a, 0x81 +.byte 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70, 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48, 0x4d, 0xeb +.byte 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67, 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4, 0x7a, 0x08 +.byte 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef, 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b, 0xfb, 0xcf +.byte 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3, 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1, 0x36, 0x72 +.byte 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29, 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94, 0xb9, 0x16 +.byte 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95, 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b, 0x61, 0x58 +.byte 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8, 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08, 0xcd, 0x36 +.byte 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5, 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0, 0x78, 0x0a +.byte 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f, 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f, 0x6b, 0x67 +.byte 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69, 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d, 0xd2, 0xc4 +.byte 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba, 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8, 0x07, 0xdd +.byte 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e +.byte 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x11, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0x65, 0x50 +.byte 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a, 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe, 0x59, 0x56 +.byte 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42, 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b, 0x75, 0xf3 +.byte 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf, 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b, 0x72, 0x70 +.byte 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf, 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42, 0x09, 0xc7 +.byte 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe, 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7, 0x70, 0xa6 +.byte 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b, 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10, 0x49, 0x00 +.byte 0x26, 0x02, 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, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b +.byte 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e, 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1 +.byte 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6, 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc +.byte 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6, 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1 +.byte 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc, 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52 +.byte 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb, 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e +.byte 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10, 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3 +.byte 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d, 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1 +.byte 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87, 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2 +.byte 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6, 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e +.byte 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c, 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26 +.byte 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad, 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08 +.byte 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a, 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2 +.byte 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56, 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae +.byte 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b, 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35 +.byte 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92, 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52 +.byte 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48, 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7 +.byte 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa, 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9 +.byte 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87, 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79 +.byte 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb, 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5 +.byte 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b, 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25 +.byte 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce, 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83 +.byte 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f, 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5 +.byte 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3, 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed +.byte 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d, 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31 +.byte 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91, 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8 +.byte 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6, 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33 +.byte 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7, 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e +.byte 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6, 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9 +.byte 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0, 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c +.byte 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c, 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e +.byte 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed, 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8 +.byte 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18, 0x05, 0x95, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47 +.byte 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76 +.byte 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xce +.byte 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07, 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19 +.byte 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b, 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa +.byte 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52, 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28 +.byte 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01, 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d +.byte 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04, 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34 +.byte 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1, 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd +.byte 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff, 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2 +.byte 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf, 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0 +.byte 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a, 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b +.byte 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90, 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c +.byte 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e, 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee +.byte 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52, 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97 +.byte 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8, 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3 +.byte 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6, 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5 +.byte 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c, 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2 +.byte 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb, 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a +.byte 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b, 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3 +.byte 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75, 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c +.byte 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b, 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a +.byte 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32, 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c +.byte 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2, 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22 +.byte 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07, 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57 +.byte 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b, 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94 +.byte 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23, 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d +.byte 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78, 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8 +.byte 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67, 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32 +.byte 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25, 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0 +.byte 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb, 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c +.byte 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde, 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30 +.byte 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f, 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21 +.byte 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5, 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1 +.byte 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03, 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52 +.byte 0x33, 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, 0x1f, 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a +.byte 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea, 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6 +.byte 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2, 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45 +.byte 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1, 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d +.byte 0x18, 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26, 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b +.byte 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c, 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e +.byte 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x49, 0x00, 0x78, 0x00, 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, 0x34, 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, 0xf3, 0x74 +.byte 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5, 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d +.byte 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5, 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd +.byte 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85, 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9 +.byte 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73, 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29 +.byte 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f, 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc +.byte 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4, 0xab, 0xd1, 0x1d, 0x8a, 0x4a, 0x00 +.byte 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 +.byte 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56 +.byte 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x47, 0x33, 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, 0xa0, 0xbe, 0x50 +.byte 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40, 0xb4, 0x04, 0x9c, 0x85, 0xb9, 0x31, 0xca, 0xdc, 0x2d, 0xe4 +.byte 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55, 0xc1, 0xe7, 0x58, 0x30, 0x1d, 0x24, 0xb4, 0xc3, 0xef, 0x85 +.byte 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d, 0xdf, 0x82, 0xe6, 0x4f, 0xad, 0x47, 0x87, 0x6c, 0xec, 0x5b +.byte 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f, 0xec, 0x87, 0xac, 0x7f, 0x82, 0x9a, 0x86, 0xec, 0x3d, 0x03 +.byte 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e, 0xac, 0xda, 0xf0, 0x53, 0xc9, 0x66, 0x3c, 0xd4, 0xac, 0x02 +.byte 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8, 0x02, 0x46, 0xaf, 0xa4, 0x1c, 0xe3, 0xf8, 0x73, 0x58, 0x76 +.byte 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5, 0xf0, 0xcf, 0xcc, 0xfa, 0xf9, 0xc6, 0x4c, 0xe5, 0xc3, 0x86 +.byte 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35, 0xeb, 0xc5, 0xdf, 0xbb, 0x0e, 0x9c, 0xc0, 0x8d, 0x87, 0xe3 +.byte 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e, 0xc7, 0xab, 0xe0, 0x13, 0x9c, 0x05, 0x18, 0x98, 0xcf, 0x93 +.byte 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23, 0xd3, 0xcf, 0xd5, 0xc4, 0x27, 0x49, 0xe0, 0x9e, 0x3c, 0x9b +.byte 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21, 0xe0, 0xfc, 0x39, 0xaa, 0x53, 0xda, 0x7d, 0x7e, 0xcf, 0x1a +.byte 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04, 0xcf, 0xa1, 0x4a, 0x8f, 0x8b, 0x76, 0x82, 0x0d, 0xa1, 0xf8 +.byte 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90, 0x36, 0x07, 0x81, 0x9b, 0x3e, 0x06, 0xfa, 0x52, 0x5e, 0x63 +.byte 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9, 0x52, 0x1b, 0x52, 0xb5, 0x92, 0x39, 0x72, 0x03, 0x09, 0x62 +.byte 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6, 0xdd, 0x25, 0xc2, 0x03, 0x66, 0xdd, 0xf3, 0x04, 0xd1, 0x40 +.byte 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f, 0xe5, 0x83, 0xa0, 0x27, 0x84, 0x5e, 0x04, 0xc1, 0xf5, 0x90 +.byte 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8, 0x69, 0xbc, 0x38, 0x9b, 0xa4, 0xa4, 0x96, 0xd1, 0x62, 0xda +.byte 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb, 0xc4, 0x51, 0x34, 0xea, 0x0c, 0xaa, 0xff, 0x21, 0x8e, 0x59 +.byte 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a, 0xa7, 0xd2, 0xe9, 0x2a, 0x78, 0x8d, 0x51, 0x3d, 0x3a, 0x15 +.byte 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c, 0xde, 0xc5, 0xf9, 0x90, 0x22, 0xe5, 0x88, 0x45, 0x71, 0xdd +.byte 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d, 0x3d, 0x98, 0x7c, 0x5e, 0xf6, 0xbe, 0x16, 0x68, 0xa0, 0x5e +.byte 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f, 0xaa, 0x22, 0x76, 0x2d, 0xc9, 0xa1, 0x10, 0x1d, 0xe4, 0xd3 +.byte 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6, 0x2a, 0xe6, 0xd7, 0xf5, 0x9a, 0xb3, 0x58, 0x1e, 0x2f, 0x30 +.byte 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5, 0x98, 0x23, 0xec, 0x08, 0x77, 0x1c, 0x95, 0x5d, 0x61, 0xd1 +.byte 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a, 0x91, 0x9a, 0xef, 0x21, 0xaa, 0x49, 0x16, 0x08, 0xa8, 0xbd +.byte 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad, 0x85, 0xf6, 0xd9, 0xc5, 0xb1, 0x8b, 0xd1, 0xe5, 0x10, 0x32 +.byte 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c, 0x49, 0x1f, 0x33, 0x85, 0x59, 0x0d, 0xdb, 0xcb, 0x09, 0x75 +.byte 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71, 0x7d, 0xf0, 0xdf, 0xc4, 0x4c, 0x7d, 0xc6, 0xa3, 0x2e, 0xc8 +.byte 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e, 0x4e, 0x4d, 0x24, 0xfb, 0x5e, 0xe4, 0x04, 0xbe, 0x72, 0x1b +.byte 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99, 0x7a, 0xd7, 0x5c, 0x09, 0x20, 0xb7, 0x7f, 0x94, 0xb9, 0x4f +.byte 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42, 0x1b, 0x11, 0xb7, 0xe7, 0x91, 0xdb, 0x9e, 0x6c, 0xf4, 0x6a +.byte 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad, 0xcc, 0x28, 0xef, 0xa5, 0x47, 0xf3, 0x53, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10 +.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 +.byte 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61 +.byte 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x47, 0x33 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xa1, 0xae, 0x25, 0xb2, 0x01, 0x18, 0xdc, 0x57, 0x88, 0x3f, 0x46, 0xeb, 0xf9, 0xaf, 0xe2 +.byte 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1, 0x61, 0x66, 0x21, 0x5f, 0xaa, 0xaf, 0x27, 0x51, 0xe5, 0x6e +.byte 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50, 0xb0, 0x53, 0x77, 0xbd, 0x78, 0x3a, 0x60, 0xe2, 0x64, 0x02 +.byte 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a, 0x8e, 0xad, 0xff, 0x1f, 0x15, 0x7f, 0xd5, 0x95, 0x1e, 0x12 +.byte 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1, 0xdf, 0x36, 0xb3, 0x16, 0x9f, 0x8a, 0xe3, 0xc9, 0xdb, 0x98 +.byte 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28, 0x46, 0xfc, 0xa7, 0xc9, 0xf0, 0xd2, 0xb4, 0xd5, 0x4d, 0x09 +.byte 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3, 0xa9, 0xda, 0x7d, 0xa1, 0x7d, 0x6b, 0xb2, 0x3a, 0x25, 0xa9 +.byte 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe, 0x6e, 0xfb, 0xdc, 0xa6, 0x73, 0x91, 0x90, 0x61, 0xa6, 0x03 +.byte 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3, 0x88, 0xad, 0xad, 0xa0, 0x8c, 0xff, 0xa6, 0x0b, 0x25, 0x52 +.byte 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb, 0xb8, 0x35, 0x81, 0x0c, 0xa3, 0x3b, 0xf0, 0xe1, 0xe1, 0xfc +.byte 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d, 0xf8, 0x49, 0xab, 0x3e, 0x3b, 0xba, 0xb8, 0xd7, 0x80, 0x01 +.byte 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5, 0x5e, 0x60, 0x2a, 0x31, 0xa0, 0xaf, 0x37, 0xe8, 0x20, 0x3a +.byte 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc, 0x09, 0x1d, 0xd3, 0x9e, 0x8e, 0x5d, 0xbc, 0x4c, 0x98, 0xee +.byte 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53, 0xa6, 0xe9, 0x14, 0x35, 0xa3, 0xdf, 0xcd, 0x80, 0x9f, 0x0c +.byte 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf, 0x4a, 0xb8, 0xfa, 0xd5, 0x8c, 0x71, 0x4a, 0xc7, 0x1f, 0xad +.byte 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d, 0xf2, 0x84, 0x56, 0xef, 0xa5, 0x57, 0x43, 0xce, 0x29, 0xad +.byte 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb, 0x5b, 0x01, 0xdd, 0x23, 0x21, 0xa1, 0x58, 0x00, 0x8e, 0xc3 +.byte 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3, 0x12, 0x2b, 0x80, 0xdc, 0x67, 0xe6, 0x95, 0xb2, 0xcd, 0x1e +.byte 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4, 0xf2, 0xca, 0x14, 0x07, 0x8d, 0x8a, 0x55, 0x12, 0xc6, 0x69 +.byte 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53, 0x5e, 0xb0, 0xd2, 0xaa, 0x21, 0xc1, 0x98, 0xe6, 0x30, 0xe3 +.byte 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac, 0x19, 0xa8, 0x55, 0xa6, 0x45, 0x06, 0xd0, 0x23, 0x3a, 0xdb +.byte 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11, 0xf0, 0x3b, 0x4f, 0xca, 0x6d, 0xf4, 0x34, 0xc4, 0x71, 0xe4 +.byte 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae, 0x23, 0x60, 0x85, 0x73, 0xf1, 0xe4, 0x10, 0xb1, 0x25, 0xae +.byte 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c, 0xe0, 0x39, 0xda, 0xb4, 0x39, 0x57, 0xb5, 0xab, 0x35, 0xaa +.byte 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7, 0x31, 0xdf, 0x7a, 0x21, 0x6e, 0xb8, 0x32, 0x08, 0x7d, 0x1d +.byte 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72, 0xcf, 0xe3, 0x77, 0xa1, 0xbc, 0xd5, 0x11, 0x1b, 0x76, 0x01 +.byte 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3, 0xeb, 0x15, 0x6e, 0xf8, 0xa4, 0x19, 0xd9, 0xa2, 0xab, 0xaf +.byte 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02, 0x8a, 0x2c, 0x14, 0x24, 0xf9, 0xbf, 0x42, 0x02, 0xbf, 0x26 +.byte 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38, 0x7d, 0x53, 0x2d, 0xe5, 0xed, 0x98, 0xb3, 0x95, 0x63, 0x68 +.byte 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88, 0xc5, 0x60, 0x35, 0x92, 0xc0, 0x7c, 0x69, 0x1c, 0x61, 0x95 +.byte 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf, 0x3e, 0x04, 0x10, 0x45, 0x65, 0x58, 0x50, 0x38, 0xaf, 0x48 +.byte 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c, 0x0d, 0x90, 0x02, 0xc6, 0x70, 0x2e, 0x01, 0xad, 0x3c, 0x15 +.byte 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d +.byte 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51 +.byte 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x33, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xcb, 0x0e, 0x10, 0x67, 0x8e, 0xea, 0x14, 0x97, 0xa7, 0x32 +.byte 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68, 0x4c, 0xc7, 0xb3, 0x6f, 0x3a, 0x23, 0x14, 0x91, 0xff, 0x19 +.byte 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3, 0x76, 0x9d, 0x7a, 0xe9, 0x8b, 0x1b, 0xab, 0x6b, 0x31, 0xdb +.byte 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5, 0xa5, 0x1a, 0x79, 0x3c, 0x8a, 0x4c, 0xff, 0xac, 0xdf, 0x25 +.byte 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b, 0x44, 0xde, 0xca, 0xdb, 0x8c, 0xac, 0xa3, 0x6e, 0x16, 0x83 +.byte 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89, 0xfb, 0x16, 0x16, 0x38, 0x7e, 0xeb, 0x43, 0xe2, 0xd3, 0x74 +.byte 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a, 0xdd, 0x49, 0xb3, 0x57, 0xd2, 0xb0, 0x0a, 0x85, 0x9d, 0x71 +.byte 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32, 0xf3, 0x01, 0x39, 0x20, 0x43, 0x1b, 0x35, 0xd1, 0x53, 0xb3 +.byte 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82, 0x3e, 0x16, 0xb5, 0x28, 0x46, 0xa1, 0xde, 0xea, 0x89, 0x09 +.byte 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a, 0x86, 0xf5, 0x59, 0x47, 0xbe, 0x1b, 0x6f, 0x01, 0x21, 0x10 +.byte 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca, 0x10, 0x39, 0x09, 0xca, 0x13, 0x36, 0xcf, 0x9c, 0xad, 0xad +.byte 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f, 0x34, 0xff, 0xfa, 0x20, 0x69, 0x7d, 0xd3, 0xee, 0x61, 0xf5 +.byte 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37, 0x23, 0x86, 0x72, 0x61, 0x45, 0x29, 0x48, 0x59, 0x68, 0x6f +.byte 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07, 0x4d, 0x6f, 0xaf, 0xce, 0xc4, 0x45, 0x13, 0x91, 0x14, 0x70 +.byte 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87, 0x69, 0xb1, 0x0e, 0xef, 0xc3, 0x89, 0x19, 0xeb, 0xea, 0x1c +.byte 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc, 0xd6, 0x03, 0x0b, 0x9e, 0x26, 0xba, 0x12, 0xdd, 0xd4, 0x54 +.byte 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea, 0x75, 0x81, 0xda, 0x2d, 0xcd, 0x0f, 0x4f, 0xe4, 0x03, 0xd1 +.byte 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90, 0xc5, 0x02, 0x90, 0x93, 0x66, 0x02, 0x21, 0xb1, 0x47, 0xde +.byte 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55, 0x8f, 0xb5, 0xa2, 0x2f, 0xc0, 0xd6, 0x33, 0x67, 0xda, 0x7e +.byte 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb, 0x47, 0xfb, 0xe6, 0x58, 0xb9, 0xf7, 0x0c, 0xf0, 0x7b, 0x2b +.byte 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40, 0x62, 0x2d, 0x3b, 0x48, 0x69, 0xdc, 0x23, 0x3c, 0x48, 0xeb +.byte 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda, 0xa8, 0x30, 0x98, 0xcf, 0x80, 0x72, 0x03, 0x88, 0xa6, 0x5b +.byte 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08, 0x03, 0x21, 0x65, 0xae, 0xb7, 0xe1, 0x1c, 0xa5, 0xb1, 0x2a +.byte 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7, 0xc0, 0x74, 0xe8, 0x71, 0xde, 0xff, 0x3d, 0x59, 0xcc, 0x96 +.byte 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57, 0x1a, 0xab, 0x6b, 0x75, 0x0b, 0x44, 0x3d, 0x11, 0x28, 0x3c +.byte 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67, 0x4f, 0xe5, 0xec, 0x3c, 0x4c, 0x60, 0x80, 0x69, 0x57, 0x38 +.byte 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8, 0xc7, 0xdf, 0xc0, 0xcc, 0x77, 0x23, 0x34, 0x49, 0x75, 0x7c +.byte 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde, 0xed, 0x41, 0x2e, 0x14, 0x05, 0x02, 0x7f, 0xe0, 0xfe, 0x20 +.byte 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22, 0xce, 0x57, 0x3d, 0xde, 0xc9, 0x30, 0x6d, 0x10, 0x03, 0x85 +.byte 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5, 0xc1, 0xb2, 0x3e, 0x88, 0x6c, 0x60, 0x7f, 0x90, 0x4f, 0x95 +.byte 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39, 0x07, 0x04, 0xfa, 0x75, 0x80, 0x7d, 0xbf, 0x49, 0x50, 0xed +.byte 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb, 0x80, 0x7e, 0xdb, 0xb6, 0xd0, 0xdd, 0x13, 0xfe, 0xc9, 0xd3 +.byte 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x78, 0x00, 0x30, 0x48 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44 +.byte 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 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 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb, 0x84, 0xf5, 0x9a, 0xef, 0x42, 0x14, 0x20, 0xe1, 0x43, 0x6b +.byte 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03, 0x84, 0xd4, 0x76, 0x93, 0x25, 0xd7, 0x59, 0x3b, 0x41, 0x65 +.byte 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb, 0x74, 0xf6, 0x12, 0xce, 0xe8, 0x6d, 0xe7, 0xab, 0xe4, 0x3c +.byte 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd, 0x16, 0x71, 0xcb, 0xbf, 0x92, 0x99, 0xf4, 0xa4, 0xd7, 0x3c +.byte 0x50, 0x54, 0x52, 0x90, 0x85, 0x83, 0x78, 0x94, 0x67, 0x67, 0xa3, 0x1c, 0x09, 0x19, 0x3d, 0x75 +.byte 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d, 0xc7, 0x0c, 0xb4, 0x41, 0x52, 0xb9, 0x6e, 0xe5, 0xee, 0x42 +.byte 0x4a, 0x00, 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x45, 0x56, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 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, 0xf1, 0x0b, 0xdd, 0x86, 0x43, 0x20, 0x19, 0xdf, 0x97, 0x85 +.byte 0xe8, 0x22, 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26, 0xc9, 0xcb, 0xe3, 0xa6, 0xd2 +.byte 0x8f, 0xc5, 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27, 0x3c, 0x65, 0x10, 0x82, 0xfc +.byte 0xdf, 0xc3, 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5, 0x1c, 0xb0, 0xdf, 0x33, 0x17 +.byte 0x5d, 0xc5, 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca, 0x29, 0x4a, 0xc2, 0x0f, 0xa9 +.byte 0x7f, 0x75, 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6, 0x1a, 0x77, 0xda, 0xc3, 0xc2 +.byte 0x97, 0x61, 0x42, 0x7b, 0x49, 0xad, 0x4a, 0x00, 0x26, 0x01, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x17, 0x30, 0x15, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73 +.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, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd, 0xf5, 0xf6, 0x14, 0x8e, 0xc2 +.byte 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d, 0x99, 0x40, 0x24, 0x17, 0x39 +.byte 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89, 0xd1, 0xfc, 0x24, 0x5b, 0x61 +.byte 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb, 0xf8, 0xde, 0xa7, 0x81, 0xba +.byte 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e, 0xb8, 0x94, 0xed, 0x29, 0x1a +.byte 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c, 0x57, 0xd7, 0x06, 0xad, 0xca +.byte 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b, 0x5d, 0xa3, 0xba, 0x16, 0xc3 +.byte 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01, 0x99, 0x6d, 0xfd, 0x88, 0xcc +.byte 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb, 0xf3, 0x19, 0x34, 0xdf, 0xbb +.byte 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf, 0xde, 0xa0, 0xc2, 0x91, 0x16 +.byte 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63, 0xde, 0x66, 0xac, 0x76, 0xa4 +.byte 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7, 0x0e, 0x2f, 0x81, 0x7a, 0xe2 +.byte 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3, 0x59, 0x3f, 0xba, 0x72, 0xbc +.byte 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42, 0x26, 0x9d, 0xa9, 0x74, 0xba +.byte 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85, 0x0e, 0x66, 0xa9, 0x08, 0x97 +.byte 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54, 0xc7, 0x93, 0xe0, 0x2e, 0x28 +.byte 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4c, 0x00, 0x26, 0x02, 0x30, 0x4a +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49, 0x64, 0x65, 0x6e +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50, 0x19, 0xde, 0x3f +.byte 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f, 0x8f, 0x67, 0x89 +.byte 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95, 0x43, 0x72, 0x99 +.byte 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81, 0x0d, 0x7c, 0xcd +.byte 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a, 0x1f, 0x5a, 0x32 +.byte 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf, 0x71, 0xb3, 0xb4 +.byte 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88, 0x4b, 0x17, 0x5e +.byte 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24, 0x1f, 0x62, 0x8d +.byte 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc, 0x99, 0xda, 0x36 +.byte 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02, 0x58, 0xf0, 0xa4 +.byte 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5, 0xfd, 0xb7, 0xef +.byte 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc, 0x74, 0x23, 0x1b +.byte 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d, 0x9f, 0xe0, 0xd5 +.byte 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02, 0xf3, 0x8a, 0xe4 +.byte 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8, 0xd1, 0x72, 0x88 +.byte 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98, 0x1e, 0x07, 0x59 +.byte 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60, 0x9d, 0xc4, 0x9d +.byte 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76, 0x3b, 0xf7, 0x33 +.byte 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93, 0x39, 0x84, 0x07 +.byte 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc, 0xf2, 0x35, 0xe5 +.byte 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b, 0xc1, 0x13, 0xc2 +.byte 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62, 0x2e, 0xcb, 0x35 +.byte 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c, 0x9c, 0xd2, 0xe3 +.byte 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c, 0x5c, 0x52, 0xf4 +.byte 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28, 0xf3, 0x41, 0x88 +.byte 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e, 0xf2, 0xb9, 0x50 +.byte 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74, 0xbe, 0x20, 0x20 +.byte 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96, 0xa7, 0xf4, 0x1e +.byte 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e, 0x9f, 0xf9, 0xc0 +.byte 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78, 0x7a, 0x80, 0x87 +.byte 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70, 0x04, 0xba, 0x4f +.byte 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a, 0xb1, 0x0b, 0x41 +.byte 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x4c, 0x00, 0x26, 0x01, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65 +.byte 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10 +.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x41 +.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, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71, 0xe5, 0x13, 0x68, 0x24, 0xb3 +.byte 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89, 0x03, 0xe9, 0xbd, 0xea, 0x5e +.byte 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a, 0x02, 0xeb, 0x31, 0x61, 0xd7 +.byte 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba, 0x32, 0x98, 0xe1, 0x1d, 0x97 +.byte 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc, 0x51, 0xed, 0x68, 0xc6, 0xd0 +.byte 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63, 0x2e, 0xe0, 0xfe, 0x75, 0xfe +.byte 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e, 0x1e, 0xa4, 0x5f, 0x90, 0xd2 +.byte 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e, 0x72, 0x05, 0x1e, 0x8b, 0xdd +.byte 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1, 0x17, 0x2c, 0x95, 0xeb, 0xf6 +.byte 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60, 0x04, 0x10, 0x96, 0x79, 0x9e +.byte 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e, 0x65, 0xf9, 0x93, 0xf5, 0xaa +.byte 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35, 0x33, 0xfa, 0x4b, 0xa5, 0x04 +.byte 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b, 0xd7, 0xda, 0xce, 0xf9, 0x33 +.byte 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0, 0x5c, 0xd4, 0x9c, 0xa3, 0xe2 +.byte 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef, 0x39, 0x54, 0xba, 0xc9, 0x0a +.byte 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62, 0xd1, 0x73, 0xe7, 0x8f, 0x7a +.byte 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x26, 0x01, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x33, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 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, 0xcc, 0x25, 0x76, 0x90, 0x79, 0x06, 0x78 +.byte 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05, 0x76, 0x11, 0xc5, 0xad +.byte 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f, 0x24, 0xcb, 0x2e, 0x4b +.byte 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c, 0xdd, 0x64, 0xd1, 0xeb +.byte 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6, 0x14, 0x86, 0x10, 0x79 +.byte 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62, 0x2f, 0x1f, 0x5e, 0xfa +.byte 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9, 0xcb, 0x26, 0x59, 0x0d +.byte 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b, 0x8b, 0xd2, 0x04, 0x60 +.byte 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91, 0xe5, 0x9d, 0x8a, 0x61 +.byte 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f, 0x2e, 0x9c, 0xfb, 0xd0 +.byte 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae, 0x53, 0xa6, 0x3a, 0x16 +.byte 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9, 0xb2, 0x4f, 0x90, 0x2e +.byte 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38, 0x26, 0x60, 0x75, 0xb2 +.byte 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40, 0x15, 0x48, 0xd1, 0x02 +.byte 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a, 0x7a, 0xbf, 0x5f, 0xc1 +.byte 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9, 0x03, 0xda, 0x6e, 0xe9 +.byte 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00 +.byte 0x26, 0x02, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 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, 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, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b, 0x3c, 0xf7, 0x0d, 0x08 +.byte 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c, 0xae, 0x83, 0xb8, 0x41 +.byte 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88, 0x6b, 0xc5, 0xb6, 0x89 +.byte 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd, 0x1b, 0x5a, 0xc6, 0xd6 +.byte 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80, 0xca, 0x44, 0xde, 0x73 +.byte 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12, 0x50, 0x6d, 0x42, 0x66 +.byte 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7, 0x19, 0x81, 0x0e, 0x7e +.byte 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c, 0x8a, 0xc5, 0xb2, 0x66 +.byte 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06, 0xa6, 0x1e, 0xf9, 0xb9 +.byte 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18, 0x89, 0xdf, 0xe4, 0x0f +.byte 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc, 0x93, 0xbb, 0x6d, 0x53 +.byte 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61, 0x7e, 0xe0, 0xea, 0x8c +.byte 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd, 0x8c, 0xb2, 0x89, 0xcf +.byte 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7, 0x5d, 0x3a, 0xca, 0xa2 +.byte 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57, 0x92, 0xfa, 0x7e, 0xbc +.byte 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2, 0x39, 0xe4, 0xac, 0x24 +.byte 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2, 0xf8, 0xe2, 0x85, 0xb7 +.byte 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f, 0x54, 0x8a, 0xf1, 0x72 +.byte 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3, 0xc5, 0x38, 0x96, 0x9b +.byte 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc, 0x71, 0x37, 0xe5, 0xa6 +.byte 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9, 0x91, 0x97, 0x84, 0x0a +.byte 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83, 0xf2, 0x5e, 0x14, 0xa1 +.byte 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08, 0xb3, 0x61, 0x66, 0x09 +.byte 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9, 0xda, 0x28, 0x8d, 0x1a +.byte 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86, 0x05, 0x00, 0x9e, 0xdb +.byte 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39, 0x5b, 0xea, 0xf9, 0xa5 +.byte 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf, 0x33, 0x48, 0xf5, 0xca +.byte 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5, 0x95, 0x64, 0x1a, 0x63 +.byte 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45, 0x79, 0x6e, 0x0e, 0x87 +.byte 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9, 0x0d, 0x6f, 0xb8, 0x2e +.byte 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19, 0x70, 0x83, 0x79, 0x91 +.byte 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14, 0x63, 0x3c, 0x28, 0x4c +.byte 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x78, 0x00, 0x30, 0x4c, 0x31, 0x2e, 0x30, 0x2c +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x45, 0x43, 0x43, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d, 0x30, 0x0b +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 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 0x96, 0x86, 0x58, 0x28, 0x37, 0x0a, 0x67, 0xd0, 0xa0, 0xde, 0x24, 0x19, 0x19, 0xe1, 0xe4, 0x05 +.byte 0x07, 0x1f, 0x97, 0xed, 0xe8, 0x64, 0x82, 0xb9, 0xf6, 0xc4, 0x71, 0x50, 0xce, 0x8a, 0x0c, 0xff +.byte 0xd7, 0xb5, 0x76, 0xbb, 0xa1, 0x6c, 0x93, 0x6c, 0x83, 0xa2, 0x68, 0x6e, 0xa5, 0xd9, 0xbe, 0x2c +.byte 0x88, 0x95, 0x41, 0xcd, 0x5d, 0xdd, 0xb1, 0xca, 0x83, 0x63, 0x83, 0xcc, 0xc0, 0xbe, 0x74, 0xd9 +.byte 0xe0, 0x9d, 0xa4, 0xee, 0x4a, 0x4e, 0x56, 0xe0, 0x98, 0x29, 0x41, 0x93, 0x52, 0x10, 0xd5, 0x24 +.byte 0x38, 0x02, 0x32, 0x67, 0xf1, 0x94, 0x12, 0x6f, 0xef, 0xd7, 0xc5, 0xde, 0x2e, 0xfd, 0x19, 0x80 +.byte 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20, 0x54, 0x4c +.byte 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x44, 0x45, 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, 0xb6, 0x80, 0x0e, 0xc4, 0x79, 0xbd, 0x05, 0x8c, 0x7d, 0xb0, 0xa3, 0x9d, 0x4d +.byte 0x22, 0x4d, 0xcb, 0xf0, 0x41, 0x97, 0x4d, 0x59, 0xe0, 0xd1, 0xfe, 0x56, 0x8c, 0x97, 0xf2, 0xd7 +.byte 0xbd, 0x8f, 0x6c, 0xb7, 0x23, 0x8f, 0x5f, 0xd5, 0xc4, 0xd8, 0x41, 0xcb, 0xf2, 0x02, 0x1e, 0x71 +.byte 0xe5, 0xe9, 0xf6, 0x5e, 0xcb, 0x08, 0x2a, 0x5e, 0x30, 0xf2, 0x2d, 0x66, 0xc7, 0x84, 0x1b, 0x64 +.byte 0x57, 0x38, 0x9d, 0x75, 0x2d, 0x56, 0xc6, 0x2f, 0x61, 0xef, 0x96, 0xfc, 0x20, 0x46, 0xbd, 0xeb +.byte 0xd4, 0x7b, 0x3f, 0x3f, 0x7c, 0x47, 0x38, 0x04, 0xa9, 0x1b, 0xaa, 0x52, 0xdf, 0x13, 0x37, 0xd3 +.byte 0x15, 0x15, 0x4e, 0xbd, 0x5f, 0x7c, 0xaf, 0xad, 0x63, 0xc7, 0x79, 0xdc, 0x08, 0x7b, 0xd5, 0xa0 +.byte 0xe5, 0xf7, 0x5b, 0x75, 0xac, 0x80, 0x55, 0x99, 0x92, 0x61, 0x9b, 0xcd, 0x2a, 0x17, 0x7d, 0xdb +.byte 0x8f, 0xf4, 0xb5, 0x6a, 0xea, 0x17, 0x4a, 0x64, 0x28, 0x66, 0x15, 0x29, 0x6c, 0x02, 0xf1, 0x6b +.byte 0xd5, 0xba, 0xa3, 0x33, 0xdc, 0x5a, 0x67, 0xa7, 0x05, 0xe2, 0xbf, 0x65, 0xb6, 0x16, 0xb0, 0x10 +.byte 0xed, 0xcd, 0x50, 0x33, 0xc9, 0x70, 0x50, 0xec, 0x19, 0x8e, 0xb0, 0xc7, 0xf2, 0x74, 0x5b, 0x6b +.byte 0x44, 0xc6, 0x7d, 0x96, 0xb9, 0x98, 0x08, 0x59, 0x66, 0xde, 0x29, 0x01, 0x9b, 0xf4, 0x2a, 0x6d +.byte 0xd3, 0x15, 0x3a, 0x90, 0x6a, 0x67, 0xf1, 0xb4, 0x6b, 0x66, 0xd9, 0x21, 0xeb, 0xca, 0xd9, 0x62 +.byte 0x7c, 0x46, 0x10, 0x5c, 0xde, 0x75, 0x49, 0x67, 0x9e, 0x42, 0xf9, 0xfe, 0x75, 0xa9, 0xa3, 0xad +.byte 0xff, 0x76, 0x0a, 0x67, 0x40, 0xe3, 0xc5, 0xf7, 0x8d, 0xc7, 0x85, 0x9a, 0x59, 0x9e, 0x62, 0x9a +.byte 0x6a, 0xed, 0x45, 0x87, 0x98, 0x67, 0xb2, 0xd5, 0x4a, 0x3c, 0xd7, 0xb4, 0x3b, 0x00, 0x0d, 0xc0 +.byte 0x8f, 0x1f, 0xe1, 0x40, 0xc4, 0xae, 0x6c, 0x21, 0xdc, 0x49, 0x7e, 0x7e, 0xca, 0xb2, 0x8d, 0x6d +.byte 0xb6, 0xbf, 0x93, 0x2f, 0xa1, 0x5c, 0x3e, 0x8f, 0xca, 0xed, 0x80, 0x8e, 0x58, 0xe1, 0xdb, 0x57 +.byte 0xcf, 0x85, 0x36, 0x38, 0xb2, 0x71, 0xa4, 0x09, 0x8c, 0x92, 0x89, 0x08, 0x88, 0x48, 0xf1, 0x40 +.byte 0x63, 0x18, 0xb2, 0x5b, 0x8c, 0x5a, 0xe3, 0xc3, 0xd3, 0x17, 0xaa, 0xab, 0x19, 0xa3, 0x2c, 0x1b +.byte 0xe4, 0xd5, 0xc6, 0xe2, 0x66, 0x7a, 0xd7, 0x82, 0x19, 0xa6, 0x3b, 0x16, 0x2c, 0x2f, 0x71, 0x87 +.byte 0x5f, 0x45, 0x9e, 0x95, 0x73, 0x93, 0xc2, 0x42, 0x81, 0x21, 0x13, 0x96, 0xd7, 0x9d, 0xbb, 0x93 +.byte 0x68, 0x15, 0xfa, 0x9d, 0xa4, 0x1d, 0x8c, 0xf2, 0x81, 0xe0, 0x58, 0x06, 0xbd, 0xc9, 0xb6, 0xe3 +.byte 0xf6, 0x89, 0x5d, 0x89, 0xf9, 0xac, 0x44, 0xa1, 0xcb, 0x6b, 0xfa, 0x16, 0xf1, 0xc7, 0x50, 0x3d +.byte 0x24, 0xda, 0xf7, 0xc3, 0xe4, 0x87, 0xd5, 0x56, 0xf1, 0x4f, 0x90, 0x30, 0xfa, 0x45, 0x09, 0x59 +.byte 0xda, 0x34, 0xce, 0xe0, 0x13, 0x1c, 0x04, 0x7c, 0x00, 0xd4, 0x9b, 0x86, 0xa4, 0x40, 0xbc, 0xd9 +.byte 0xdc, 0x4c, 0x57, 0x7e, 0xae, 0xb7, 0x33, 0xb6, 0x5e, 0x76, 0xe1, 0x65, 0x8b, 0x66, 0xdf, 0x8d +.byte 0xca, 0xd7, 0x98, 0xaf, 0xce, 0x36, 0x98, 0x8c, 0x9c, 0x83, 0x99, 0x03, 0x70, 0xf3, 0xaf, 0x74 +.byte 0xed, 0xc6, 0x0e, 0x36, 0xe7, 0xbd, 0xec, 0xc1, 0x73, 0xa7, 0x94, 0x5a, 0xcb, 0x92, 0x64, 0x82 +.byte 0xa6, 0x00, 0xc1, 0x70, 0xa1, 0x6e, 0x2c, 0x29, 0xe1, 0x58, 0x57, 0xec, 0x5a, 0x7c, 0x99, 0x6b +.byte 0x25, 0xa4, 0x90, 0x3a, 0x80, 0xf4, 0x20, 0x9d, 0x9a, 0xce, 0xc7, 0x2d, 0xf9, 0xb2, 0x4b, 0x29 +.byte 0x95, 0x83, 0xe9, 0x35, 0x8d, 0xa7, 0x49, 0x48, 0xa7, 0x0f, 0x4c, 0x19, 0x91, 0xd0, 0xf5, 0xbf +.byte 0x10, 0xe0, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x01, 0x30, 0x4d, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d +.byte 0x62, 0x48, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54 +.byte 0x52, 0x55, 0x53, 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20 +.byte 0x33, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0xd3, 0xb2, 0x4a, 0xcf +.byte 0x7a, 0x47, 0xef, 0x75, 0x9b, 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6 +.byte 0x6b, 0xdb, 0xfe, 0xdb, 0x00, 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d +.byte 0x4a, 0x68, 0x94, 0x35, 0xb3, 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78 +.byte 0xec, 0x2a, 0x3d, 0xf3, 0x48, 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3 +.byte 0x10, 0x4d, 0x0d, 0x91, 0x52, 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f +.byte 0x39, 0x40, 0x04, 0x5f, 0x5b, 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84 +.byte 0xd6, 0x48, 0xf3, 0x92, 0x1e, 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef +.byte 0x50, 0x3f, 0x69, 0x5d, 0x19, 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72 +.byte 0xae, 0xb4, 0xbc, 0x56, 0x09, 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55 +.byte 0xcc, 0x0f, 0xd3, 0xb4, 0x1a, 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0 +.byte 0xaa, 0xbd, 0x0c, 0x13, 0xb5, 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94 +.byte 0xda, 0x50, 0x9a, 0xf1, 0xff, 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f +.byte 0xb8, 0x09, 0x2e, 0xf3, 0xa7, 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4 +.byte 0xc3, 0xca, 0x5a, 0xc5, 0x31, 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8 +.byte 0x73, 0x7c, 0x81, 0xca, 0x96, 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6 +.byte 0xfd, 0x57, 0x10, 0xb5, 0x5f, 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49 +.byte 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x21, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62 +.byte 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 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, 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a +.byte 0xfb, 0x27, 0x76, 0xe4, 0xf2, 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0 +.byte 0xa9, 0xc3, 0x31, 0x6b, 0xa8, 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb +.byte 0x55, 0x58, 0xbb, 0x7a, 0xf8, 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62 +.byte 0x76, 0x1e, 0x11, 0xee, 0x08, 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f +.byte 0x5e, 0xdb, 0xcb, 0x73, 0x41, 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b +.byte 0x4b, 0xc2, 0x2d, 0x9d, 0xe4, 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4 +.byte 0x24, 0x35, 0x07, 0x9f, 0x9c, 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0 +.byte 0x83, 0xf3, 0x4f, 0xc7, 0x2d, 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58 +.byte 0x5a, 0xe4, 0x8d, 0x1b, 0x9a, 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a +.byte 0x97, 0x2e, 0xf3, 0x53, 0x77, 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d +.byte 0x9a, 0x6f, 0x6d, 0x48, 0x48, 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f +.byte 0xab, 0x2f, 0x6b, 0x83, 0x72, 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63 +.byte 0xc6, 0x4d, 0xcd, 0xac, 0x66, 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4 +.byte 0x7a, 0xef, 0x60, 0x50, 0xb2, 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39 +.byte 0x25, 0xe8, 0x39, 0x66, 0xe4, 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad +.byte 0xf1, 0xb0, 0xca, 0x3e, 0x06, 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb +.byte 0xa8, 0x8c, 0x71, 0xf4, 0xd5, 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17 +.byte 0xb1, 0x97, 0x4c, 0x50, 0x3d, 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf +.byte 0x01, 0x67, 0xa2, 0x5e, 0x7b, 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa +.byte 0x44, 0x51, 0x66, 0xcc, 0x7d, 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d +.byte 0x6b, 0x8a, 0x61, 0xf9, 0xbc, 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a +.byte 0x1e, 0x5b, 0x42, 0x1c, 0x8b, 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6 +.byte 0xf8, 0xaa, 0x3c, 0x92, 0x8e, 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38 +.byte 0x94, 0x54, 0xe8, 0xea, 0xdc, 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa +.byte 0xc5, 0x40, 0x4c, 0x54, 0xab, 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d +.byte 0xbd, 0x65, 0x5f, 0xef, 0x88, 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d +.byte 0x7c, 0x98, 0x41, 0x69, 0x46, 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd +.byte 0xca, 0x4b, 0xd9, 0x4c, 0x90, 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28 +.byte 0x5f, 0x1c, 0xc2, 0xa2, 0xab, 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d +.byte 0x7f, 0xda, 0x19, 0x44, 0xe4, 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f +.byte 0x95, 0x72, 0xed, 0x6d, 0x5f, 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23 +.byte 0x84, 0x10, 0x1b, 0x01, 0xe7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53 +.byte 0x41, 0x34, 0x30, 0x39, 0x36, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 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, 0xb3, 0xd0 +.byte 0xf4, 0xc9, 0x79, 0x11, 0x9d, 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81 +.byte 0x3e, 0x6a, 0x35, 0x8e, 0x2e, 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea +.byte 0x09, 0x0b, 0x99, 0xbd, 0x6c, 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6 +.byte 0x48, 0xac, 0x2e, 0x72, 0xe5, 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11 +.byte 0xb4, 0xd8, 0x2f, 0x89, 0x16, 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78 +.byte 0x1c, 0x8e, 0x28, 0xe0, 0x45, 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45 +.byte 0xe5, 0xbe, 0xc2, 0x42, 0xfe, 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8 +.byte 0x29, 0xc2, 0x0b, 0x1c, 0x38, 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac +.byte 0xb7, 0x2b, 0xbd, 0x74, 0x9b, 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e +.byte 0x88, 0x4a, 0x12, 0x23, 0xd0, 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16 +.byte 0x4c, 0xa4, 0x6d, 0x93, 0xe9, 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f +.byte 0xfc, 0x3b, 0x23, 0xc8, 0x6d, 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7 +.byte 0xa7, 0x29, 0x54, 0x80, 0xcf, 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94 +.byte 0x43, 0x9d, 0x4d, 0x7f, 0x70, 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0 +.byte 0x14, 0x93, 0x58, 0xef, 0xcd, 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c +.byte 0xe9, 0xd5, 0x0d, 0xd5, 0xe2, 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3 +.byte 0xe8, 0xb0, 0xc1, 0xfd, 0xef, 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c +.byte 0x0e, 0xbf, 0x64, 0xbe, 0x29, 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15 +.byte 0xf4, 0x0c, 0x15, 0xac, 0x0a, 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0 +.byte 0xf1, 0x66, 0xb7, 0xb7, 0xce, 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63 +.byte 0xf7, 0xb8, 0xa1, 0x04, 0xc8, 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49 +.byte 0xfe, 0xa7, 0x2f, 0x79, 0x30, 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7 +.byte 0x1d, 0x2e, 0xfb, 0xf2, 0xcf, 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91 +.byte 0xe9, 0x19, 0x60, 0x83, 0xf2, 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7 +.byte 0x8a, 0x0c, 0x60, 0x8c, 0x28, 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b +.byte 0xd7, 0x2b, 0x26, 0x3f, 0xfd, 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f +.byte 0x6d, 0xe8, 0x8f, 0x4f, 0x4d, 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86 +.byte 0xf9, 0xf1, 0x77, 0x79, 0x4b, 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13 +.byte 0x5e, 0x5e, 0x85, 0x4f, 0xce, 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd +.byte 0x7d, 0xfd, 0x82, 0xf8, 0xc2, 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40 +.byte 0x1f, 0x9c, 0x66, 0xd5, 0x0c, 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43 +.byte 0xcb, 0xb6, 0x0a, 0x11, 0x39, 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31 +.byte 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17 +.byte 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 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, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77 +.byte 0xfb, 0x43, 0x21, 0xf4, 0xf4, 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4 +.byte 0x59, 0x0d, 0xba, 0xe7, 0x75, 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07 +.byte 0xca, 0x8c, 0xae, 0xb0, 0xdc, 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c +.byte 0x56, 0x06, 0xff, 0x4b, 0x64, 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee +.byte 0xf1, 0x4a, 0xbb, 0x73, 0x30, 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e +.byte 0xab, 0x60, 0xf9, 0xd3, 0xf1, 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9 +.byte 0xb5, 0xf4, 0x31, 0x87, 0xa3, 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97 +.byte 0xc1, 0x55, 0x33, 0x92, 0x3e, 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54 +.byte 0x06, 0x6c, 0xd8, 0x06, 0x13, 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81 +.byte 0x71, 0x79, 0x90, 0x44, 0x50, 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61 +.byte 0xa3, 0x41, 0xcb, 0x23, 0x36, 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93 +.byte 0xec, 0x84, 0xd3, 0x8e, 0xbc, 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94 +.byte 0x0a, 0xa4, 0xea, 0x73, 0xfb, 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1 +.byte 0x54, 0x15, 0x7d, 0x3c, 0xe1, 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55 +.byte 0xec, 0xb6, 0xd9, 0x69, 0x17, 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27 +.byte 0x7c, 0xe5, 0x75, 0xd7, 0xaa, 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e +.byte 0xa8, 0xa0, 0xcd, 0x7b, 0x2e, 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b +.byte 0x38, 0x1b, 0x38, 0xe6, 0x0a, 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd +.byte 0x8b, 0xec, 0x34, 0x8e, 0x9c, 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f +.byte 0x18, 0x08, 0xcd, 0x11, 0x68, 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3 +.byte 0xd8, 0x57, 0x73, 0x1e, 0xe9, 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec +.byte 0x69, 0x1c, 0xa2, 0x7e, 0xc4, 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16 +.byte 0x64, 0x66, 0x69, 0x9f, 0x49, 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c +.byte 0xb5, 0x4d, 0xb3, 0x33, 0xe0, 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b +.byte 0x3c, 0x2e, 0x5a, 0x01, 0x52, 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa +.byte 0x11, 0xe4, 0xfe, 0xc3, 0x37, 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1 +.byte 0xfd, 0x67, 0x6b, 0xd7, 0x52, 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78 +.byte 0xf0, 0x53, 0xf8, 0x61, 0x42, 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac +.byte 0x62, 0xaf, 0x36, 0x8b, 0xa2, 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72 +.byte 0x03, 0x49, 0xdb, 0xc7, 0x5f, 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5 +.byte 0x6d, 0xb4, 0x6e, 0x30, 0x68, 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20 +.byte 0x98, 0xa1, 0x76, 0x32, 0xb8, 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26 +.byte 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f +.byte 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61 +.byte 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31 +.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73 +.byte 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 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, 0xa5, 0xda, 0x0a, 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06 +.byte 0x32, 0x7a, 0x9b, 0xf1, 0x10, 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0 +.byte 0x9f, 0x18, 0x64, 0xbc, 0x9a, 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde +.byte 0x38, 0x3d, 0xd6, 0xe0, 0xa8, 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15 +.byte 0x72, 0xc7, 0xf3, 0x33, 0x87, 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5 +.byte 0xcd, 0xc4, 0x37, 0x77, 0x28, 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70 +.byte 0x3e, 0xe7, 0xc6, 0xc4, 0x8a, 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55 +.byte 0xb2, 0x3a, 0x13, 0xfc, 0xb7, 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60 +.byte 0xbb, 0x3d, 0xb7, 0x39, 0xc3, 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57 +.byte 0xa1, 0xed, 0xf9, 0x9d, 0xbe, 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0 +.byte 0x37, 0x1c, 0x57, 0x9d, 0x45, 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87 +.byte 0x63, 0xd7, 0xd0, 0x32, 0x6a, 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31 +.byte 0x2e, 0x39, 0x00, 0x27, 0x14, 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72 +.byte 0x16, 0x13, 0x64, 0x52, 0xc7, 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4 +.byte 0xae, 0x5c, 0xff, 0x70, 0x13, 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05 +.byte 0x8d, 0x4b, 0x69, 0xb0, 0xf5, 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b +.byte 0xf1, 0x34, 0x07, 0xdb, 0x17, 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1 +.byte 0x4f, 0x17, 0x2a, 0x10, 0xf3, 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d +.byte 0x82, 0x6e, 0x04, 0xd4, 0x52, 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42 +.byte 0x1d, 0xa6, 0x6b, 0xef, 0xb9, 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89 +.byte 0x24, 0xd8, 0xcc, 0x8c, 0x34, 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91 +.byte 0x6f, 0x0b, 0x91, 0x79, 0x19, 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8 +.byte 0x68, 0x48, 0xbb, 0x82, 0x13, 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58 +.byte 0xdb, 0xd2, 0x3b, 0x55, 0x10, 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f +.byte 0x09, 0x0e, 0x54, 0x32, 0x5e, 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b +.byte 0x06, 0x5a, 0x37, 0x5a, 0x25, 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8 +.byte 0x1d, 0xc3, 0xdf, 0x8c, 0x45, 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96 +.byte 0x9c, 0xc3, 0xc4, 0xef, 0xc3, 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2 +.byte 0x89, 0x9f, 0xa0, 0x30, 0x4b, 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45 +.byte 0x68, 0x0f, 0x2b, 0xd0, 0xf1, 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0 +.byte 0x63, 0x62, 0xdd, 0x60, 0x0f, 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b +.byte 0x76, 0xb2, 0x84, 0x64, 0xb1, 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0 +.byte 0xb6, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b +.byte 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f +.byte 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 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, 0x4b, 0x36, 0xe9, 0xae, 0x57, 0x5e, 0xa8, 0x70, 0xd7, 0xd0, 0x8f, 0x74, 0x62 +.byte 0x77, 0xc3, 0x5e, 0x7a, 0xaa, 0xe5, 0xb6, 0xa2, 0xf1, 0x78, 0xfd, 0x02, 0x7e, 0x57, 0xdd, 0x91 +.byte 0x79, 0x9c, 0x6c, 0xb9, 0x52, 0x88, 0x54, 0xbc, 0x2f, 0x04, 0xbe, 0xb8, 0xcd, 0xf6, 0x10, 0xd1 +.byte 0x29, 0xec, 0xb5, 0xd0, 0xa0, 0xc3, 0xf0, 0x89, 0x70, 0x19, 0xbb, 0x51, 0x65, 0xc5, 0x43, 0x9c +.byte 0xc3, 0x9b, 0x63, 0x9d, 0x20, 0x83, 0x3e, 0x06, 0x0b, 0xa6, 0x42, 0x44, 0x85, 0x11, 0xa7, 0x4a +.byte 0x3a, 0x2d, 0xe9, 0xd6, 0x68, 0x2f, 0x48, 0x4e, 0x53, 0x2b, 0x07, 0x3f, 0x4d, 0xbd, 0xb9, 0xac +.byte 0x77, 0x39, 0x57, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50 +.byte 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x32, 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, 0x78 +.byte 0x30, 0x81, 0xe8, 0x63, 0x1e, 0xe5, 0xeb, 0x71, 0x51, 0x0f, 0xf7, 0x07, 0x07, 0xca, 0x39, 0x99 +.byte 0x7c, 0x4e, 0xd5, 0x0f, 0xcc, 0x30, 0x30, 0x0b, 0x8f, 0x66, 0x93, 0x3e, 0xcf, 0xbd, 0xc5, 0x86 +.byte 0xbd, 0xf9, 0xb1, 0xb7, 0xb4, 0x3e, 0xb4, 0x07, 0xc8, 0xf3, 0x96, 0x31, 0xf3, 0xed, 0xa4, 0x4f +.byte 0xf8, 0xa3, 0x4e, 0x8d, 0x29, 0x15, 0x58, 0xb8, 0xd5, 0x6f, 0x7f, 0xee, 0x6c, 0x22, 0xb5, 0xb0 +.byte 0xaf, 0x48, 0x45, 0x0a, 0xbd, 0xa8, 0x49, 0x94, 0xbf, 0x84, 0x43, 0xb0, 0xdb, 0x84, 0x4a, 0x03 +.byte 0x23, 0x19, 0x67, 0x6a, 0x6f, 0xc1, 0x6e, 0xbc, 0x06, 0x39, 0x37, 0xd1, 0x88, 0x22, 0xf7, 0x50 +.byte 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d +.byte 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69 +.byte 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x2d, 0x30, 0x31, 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, 0xb0, 0x48, 0x65, 0xa3, 0x0d, 0x1d, 0x42, 0xe3, 0x91, 0x6d, 0x9d, 0x84 +.byte 0xa4, 0x61, 0x96, 0x12, 0xc2, 0xed, 0xc3, 0xda, 0x23, 0x34, 0x19, 0x76, 0xf6, 0xea, 0xfd, 0x55 +.byte 0x5a, 0xf6, 0x55, 0x01, 0x53, 0x0f, 0xf2, 0xcc, 0x8c, 0x97, 0x4f, 0xb9, 0x50, 0xcb, 0xb3, 0x01 +.byte 0x44, 0x56, 0x96, 0xfd, 0x9b, 0x28, 0xec, 0x7b, 0x74, 0x0b, 0xe7, 0x42, 0x6b, 0x55, 0xce, 0xc9 +.byte 0x61, 0xb2, 0xe8, 0xad, 0x40, 0x3c, 0xba, 0xb9, 0x41, 0x0a, 0x05, 0x4f, 0x1b, 0x26, 0x85, 0x8f +.byte 0x43, 0xb5, 0x40, 0xb5, 0x85, 0xd1, 0xd4, 0x71, 0xdc, 0x83, 0x41, 0xf3, 0xf6, 0x45, 0xc7, 0x80 +.byte 0xa2, 0x84, 0x50, 0x97, 0x46, 0xce, 0xa0, 0x0c, 0xc4, 0x60, 0x56, 0x04, 0x1d, 0x07, 0x5b, 0x46 +.byte 0xa5, 0x0e, 0xb2, 0x4b, 0xa4, 0x0e, 0xa5, 0x7c, 0xee, 0xf8, 0xd4, 0x62, 0x03, 0xb9, 0x93, 0x6a +.byte 0x8a, 0x14, 0xb8, 0x70, 0xf8, 0x2e, 0x82, 0x46, 0x38, 0x23, 0x0e, 0x74, 0xc7, 0x6b, 0x41, 0xb7 +.byte 0xd0, 0x29, 0xa3, 0x9d, 0x80, 0xb0, 0x7e, 0x77, 0x93, 0x63, 0x42, 0xfb, 0x34, 0x83, 0x3b, 0x73 +.byte 0xa3, 0x5a, 0x21, 0x36, 0xeb, 0x47, 0xfa, 0x18, 0x17, 0xd9, 0xba, 0x66, 0xc2, 0x93, 0xa4, 0x8f +.byte 0xfc, 0x5d, 0xa4, 0xad, 0xfc, 0x50, 0x6a, 0x95, 0xac, 0xbc, 0x24, 0x33, 0xd1, 0xbd, 0x88, 0x7f +.byte 0x86, 0xf5, 0xf5, 0xb2, 0x73, 0x2a, 0x8f, 0x7c, 0xaf, 0x08, 0xf2, 0x1a, 0x98, 0x3f, 0xa9, 0x81 +.byte 0x65, 0x3f, 0xc1, 0x8c, 0x89, 0xc5, 0x96, 0x30, 0x9a, 0x0a, 0xcf, 0xf4, 0xd4, 0xc8, 0x34, 0xed +.byte 0x9d, 0x2f, 0xbc, 0x8d, 0x38, 0x86, 0x53, 0xee, 0x97, 0x9f, 0xa9, 0xb2, 0x63, 0x94, 0x17, 0x8d +.byte 0x0f, 0xdc, 0x66, 0x2a, 0x7c, 0x52, 0x51, 0x75, 0xcb, 0x99, 0x8e, 0xe8, 0x3d, 0x5c, 0xbf, 0x9e +.byte 0x3b, 0x28, 0x8d, 0x83, 0x02, 0x0f, 0xa9, 0x9f, 0x72, 0xe2, 0x2c, 0x2b, 0xb3, 0xdc, 0x66, 0x97 +.byte 0x00, 0x40, 0xd0, 0xa4, 0x54, 0x8e, 0x9b, 0x5d, 0x7b, 0x45, 0x36, 0x26, 0xd6, 0x72, 0x43, 0xeb +.byte 0xcf, 0xc0, 0xea, 0x0d, 0xdc, 0xce, 0x12, 0xe6, 0x7d, 0x38, 0x9f, 0x05, 0x27, 0xa8, 0x97, 0x3e +.byte 0xe9, 0x51, 0xc6, 0x6c, 0x05, 0x28, 0xc1, 0x02, 0x0f, 0xe9, 0x18, 0x6d, 0xec, 0xbd, 0x9c, 0x06 +.byte 0xd4, 0xa7, 0x49, 0xf4, 0x54, 0x05, 0x6b, 0x6c, 0x30, 0xf1, 0xeb, 0x03, 0xd5, 0xea, 0x3d, 0x6a +.byte 0x76, 0xc2, 0xcb, 0x1a, 0x28, 0x49, 0x4d, 0x7f, 0x64, 0xe0, 0xfa, 0x2b, 0xda, 0x73, 0x83, 0x81 +.byte 0xff, 0x91, 0x03, 0xbd, 0x94, 0xbb, 0xe4, 0xb8, 0x8e, 0x9c, 0x32, 0x63, 0xcd, 0x9f, 0xbb, 0x68 +.byte 0x81, 0xb1, 0x84, 0x5b, 0xaf, 0x36, 0xbf, 0x77, 0xee, 0x1d, 0x7f, 0xf7, 0x49, 0x9b, 0x52, 0xec +.byte 0xd2, 0x77, 0x5a, 0x7d, 0x91, 0x9d, 0x4d, 0xc2, 0x39, 0x2d, 0xe4, 0xba, 0x82, 0xf8, 0x6f, 0xf2 +.byte 0x4e, 0x1e, 0x0f, 0x4e, 0xe6, 0x3f, 0x59, 0xa5, 0x23, 0xdc, 0x3d, 0x87, 0xa8, 0x28, 0x58, 0x28 +.byte 0xd1, 0xf1, 0x1b, 0x36, 0xdb, 0x4f, 0xc4, 0xff, 0xe1, 0x8c, 0x5b, 0x72, 0x8c, 0xc7, 0x26, 0x03 +.byte 0x27, 0xa3, 0x39, 0x0a, 0x01, 0xaa, 0xc0, 0xb2, 0x31, 0x60, 0x83, 0x22, 0xa1, 0x4f, 0x12, 0x09 +.byte 0x01, 0x11, 0xaf, 0x34, 0xd4, 0xcf, 0xd7, 0xae, 0x62, 0xd3, 0x05, 0x07, 0xb4, 0x31, 0x75, 0xe0 +.byte 0x0d, 0x6d, 0x57, 0x4f, 0x69, 0x87, 0xf9, 0x57, 0xa9, 0xba, 0x15, 0xf6, 0xc8, 0x52, 0x6d, 0xa1 +.byte 0xcb, 0x9c, 0x1f, 0xe5, 0xfc, 0x78, 0xa8, 0x35, 0x9a, 0x9f, 0x41, 0x14, 0xce, 0xa5, 0xb4, 0xce +.byte 0x94, 0x08, 0x1c, 0x09, 0xad, 0x56, 0xe5, 0xda, 0xb6, 0x49, 0x9a, 0x4a, 0xea, 0x63, 0x18, 0x53 +.byte 0x9c, 0x2c, 0x2e, 0xc3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65 +.byte 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53 +.byte 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 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, 0xe1, 0xfa +.byte 0x0e, 0xfb, 0x68, 0x00, 0x12, 0xc8, 0x4d, 0xd5, 0xac, 0x22, 0xc4, 0x35, 0x01, 0x3b, 0xc5, 0x54 +.byte 0xe5, 0x59, 0x76, 0x63, 0xa5, 0x7f, 0xeb, 0xc1, 0xc4, 0x6a, 0x98, 0xbd, 0x32, 0x8d, 0x17, 0x80 +.byte 0xeb, 0x5d, 0xba, 0xd1, 0x62, 0x3d, 0x25, 0x23, 0x19, 0x35, 0x14, 0xe9, 0x7f, 0x89, 0xa7, 0x1b +.byte 0x62, 0x3c, 0xd6, 0x50, 0xe7, 0x34, 0x95, 0x03, 0x32, 0xb1, 0xb4, 0x93, 0x22, 0x3d, 0xa7, 0xe2 +.byte 0xb1, 0xed, 0xe6, 0x7b, 0x4e, 0x2e, 0x87, 0x9b, 0x0d, 0x33, 0x75, 0x0a, 0xde, 0xaa, 0x35, 0xe7 +.byte 0x7e, 0xe5, 0x36, 0x98, 0xa2, 0xae, 0x25, 0x9e, 0x95, 0xb3, 0x32, 0x96, 0xa4, 0x2b, 0x58, 0x1e +.byte 0xef, 0x3f, 0xfe, 0x62, 0x34, 0x48, 0x51, 0xd1, 0xb4, 0x8d, 0x42, 0xad, 0x60, 0xda, 0x49, 0x6a +.byte 0x95, 0x70, 0xdd, 0xd2, 0x00, 0xe2, 0xcc, 0x57, 0x63, 0x02, 0x7b, 0x96, 0xdd, 0x49, 0x97, 0x5b +.byte 0x92, 0x4e, 0x95, 0xd3, 0xf9, 0xcb, 0x29, 0x1f, 0x18, 0x4a, 0xf8, 0x01, 0x2a, 0xd2, 0x63, 0x09 +.byte 0x6e, 0x24, 0xe9, 0x89, 0xd2, 0xe5, 0xc7, 0x22, 0x4c, 0xdc, 0x73, 0x86, 0x47, 0x00, 0xaa, 0x0d +.byte 0x88, 0x8e, 0xae, 0x85, 0x7d, 0x4a, 0xe9, 0xbb, 0x33, 0x4f, 0x0e, 0x52, 0x70, 0x9d, 0x95, 0xe3 +.byte 0x7c, 0x6d, 0x96, 0x5b, 0x2d, 0x3d, 0x5f, 0xa1, 0x83, 0x46, 0x5d, 0xb6, 0xe3, 0x25, 0xb8, 0x7c +.byte 0xa7, 0x19, 0x80, 0x1c, 0xea, 0x65, 0x43, 0xdc, 0x91, 0x79, 0x36, 0x2c, 0x74, 0x7c, 0xf2, 0x67 +.byte 0x06, 0xc9, 0x89, 0xc9, 0xdb, 0xbf, 0xda, 0x68, 0xbf, 0x23, 0xed, 0xdc, 0x6b, 0xad, 0x28, 0x83 +.byte 0x79, 0x2f, 0xec, 0x38, 0xa5, 0x0d, 0x37, 0x01, 0x67, 0x27, 0x9a, 0xe9, 0x33, 0xd9, 0x33, 0x5f +.byte 0x37, 0xa1, 0xc5, 0xf0, 0xab, 0x3d, 0xfa, 0x78, 0xb0, 0xe7, 0x2c, 0x9f, 0xf6, 0x3e, 0x9f, 0x60 +.byte 0xe0, 0xef, 0x48, 0xe9, 0x90, 0x45, 0x1e, 0x05, 0x51, 0x78, 0x1a, 0x2c, 0x12, 0x2c, 0x5c, 0x28 +.byte 0xac, 0x0d, 0xa2, 0x23, 0x9e, 0x34, 0x8f, 0x05, 0xe6, 0xa2, 0x33, 0xce, 0x11, 0x77, 0x13, 0xd4 +.byte 0x0e, 0xa4, 0x1e, 0x42, 0x1f, 0x86, 0xcd, 0x70, 0xfe, 0xd9, 0x2e, 0x15, 0x3d, 0x1d, 0xbb, 0xb8 +.byte 0xf2, 0x53, 0x57, 0xdb, 0xcc, 0xc6, 0x74, 0x29, 0x9c, 0x18, 0xb3, 0x36, 0x75, 0x38, 0x2e, 0x0f +.byte 0x54, 0xa1, 0xf8, 0x92, 0x1f, 0x89, 0x96, 0x4f, 0xbb, 0xd4, 0xee, 0x9d, 0xe9, 0x3b, 0x36, 0x42 +.byte 0xb5, 0x0a, 0x3b, 0x2a, 0xd4, 0x64, 0x79, 0x36, 0x10, 0xe1, 0xf9, 0x91, 0x03, 0x2b, 0x7b, 0x20 +.byte 0x54, 0xcd, 0x0d, 0x19, 0x1a, 0xc8, 0x41, 0x32, 0x34, 0xd1, 0xb0, 0x99, 0xe1, 0x90, 0x1e, 0x01 +.byte 0x40, 0x36, 0xb5, 0xb7, 0xfa, 0xa9, 0xe5, 0x77, 0x75, 0xa4, 0x22, 0x81, 0x5d, 0xb0, 0x8b, 0xe4 +.byte 0x27, 0x12, 0x0f, 0x54, 0x88, 0xc6, 0xdb, 0x85, 0x74, 0xe6, 0xb7, 0xc0, 0xd7, 0xa6, 0x29, 0xfa +.byte 0xdb, 0xde, 0xf3, 0x93, 0x97, 0x27, 0x04, 0x55, 0x2f, 0x0a, 0x6f, 0x37, 0xc5, 0x3d, 0x13, 0xaf +.byte 0x0a, 0x00, 0xa9, 0x2c, 0x8b, 0x1c, 0x81, 0x28, 0xd7, 0xef, 0x86, 0x31, 0xa9, 0xae, 0xf2, 0x6e +.byte 0xb8, 0xca, 0x6a, 0x2c, 0x54, 0x47, 0xd8, 0x2a, 0x88, 0x2e, 0xaf, 0xc1, 0x07, 0x10, 0x78, 0xac +.byte 0x11, 0xa2, 0x2f, 0x42, 0xf0, 0x37, 0xc5, 0xf2, 0xb8, 0x56, 0xdd, 0x0e, 0x62, 0x2d, 0xce, 0x2d +.byte 0x56, 0x7e, 0x55, 0xf2, 0xa7, 0x44, 0xf6, 0x2b, 0x32, 0xf4, 0x23, 0xa8, 0x47, 0xe8, 0xd4, 0x2a +.byte 0x01, 0x78, 0xcf, 0x6a, 0xc3, 0x37, 0xa8, 0x9e, 0x65, 0xd2, 0x2c, 0xe5, 0xfa, 0xba, 0x33, 0xc1 +.byte 0x06, 0x44, 0xf6, 0xe6, 0xcf, 0xa5, 0x0d, 0xa7, 0x66, 0x08, 0x34, 0x8a, 0x2c, 0xf3, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x50, 0x00, 0x78, 0x00, 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, 0x50 +.byte 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c +.byte 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54 +.byte 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32 +.byte 0x30, 0x32, 0x32, 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, 0x45, 0x29, 0x35, 0x73, 0xfa +.byte 0xc2, 0xb8, 0x23, 0xce, 0x14, 0x7d, 0xa8, 0xb1, 0x4d, 0xa0, 0x5b, 0x36, 0xee, 0x2a, 0x2c, 0x53 +.byte 0xc3, 0x60, 0x09, 0x35, 0xb2, 0x24, 0x66, 0x26, 0x69, 0xc0, 0xb3, 0x95, 0xd6, 0x5d, 0x92, 0x40 +.byte 0x19, 0x0e, 0xc6, 0xa5, 0x13, 0x70, 0xf4, 0xef, 0x12, 0x51, 0x28, 0x5d, 0xe7, 0xcc, 0xbd, 0xf9 +.byte 0x3c, 0x85, 0xc1, 0xcf, 0x94, 0x90, 0xc9, 0x2b, 0xce, 0x92, 0x42, 0x58, 0x59, 0x67, 0xfd, 0x94 +.byte 0x27, 0x10, 0x64, 0x8c, 0x4f, 0x04, 0xb1, 0x4d, 0x49, 0xe4, 0x7b, 0x4f, 0x9b, 0xf5, 0xe7, 0x08 +.byte 0xf8, 0x03, 0x88, 0xf7, 0xa7, 0xc3, 0x92, 0x4b, 0x19, 0x54, 0x81, 0x50, 0x00, 0x26, 0x02, 0x30 +.byte 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72 +.byte 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52 +.byte 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xd0, 0xa4, 0x09, 0x72, 0x4f, 0x40, 0x88, 0x12, 0x61, 0x3e, 0x35, 0x23, 0x9e, 0xee, 0xf6, 0x74 +.byte 0xcf, 0x2f, 0x7b, 0x58, 0x3d, 0xce, 0x3c, 0x0d, 0x10, 0x28, 0x90, 0x2f, 0x97, 0xf7, 0x8c, 0x48 +.byte 0xd8, 0xa0, 0xd8, 0x25, 0xb1, 0x4c, 0xb0, 0x11, 0x4c, 0x17, 0x73, 0x50, 0xd0, 0x22, 0x4a, 0x63 +.byte 0xbb, 0x81, 0xd3, 0x29, 0x6e, 0xd5, 0xb5, 0x09, 0x3e, 0x26, 0x18, 0x7f, 0xb2, 0x12, 0x7f, 0x93 +.byte 0x98, 0xb7, 0xaf, 0xf0, 0x36, 0xbf, 0xf2, 0xee, 0x18, 0x9e, 0x9c, 0x3b, 0x52, 0xc5, 0x47, 0x19 +.byte 0x5d, 0x74, 0xf3, 0x64, 0x66, 0xd5, 0x5d, 0xc7, 0x68, 0xb4, 0xbf, 0x1b, 0x1c, 0x06, 0xa3, 0xbc +.byte 0x8f, 0x40, 0x23, 0xb6, 0x1e, 0xc6, 0x84, 0xbd, 0x51, 0xc4, 0x1b, 0x39, 0xc1, 0x95, 0xd2, 0x29 +.byte 0xec, 0x4b, 0xae, 0x7b, 0x2d, 0xbf, 0x39, 0xfd, 0xb4, 0x62, 0xde, 0x96, 0x7b, 0x41, 0xc6, 0x9c +.byte 0xa0, 0xe0, 0x06, 0x72, 0xfb, 0xf0, 0x07, 0x97, 0x09, 0x39, 0x81, 0x74, 0xaf, 0xf7, 0x34, 0x59 +.byte 0x11, 0x57, 0x0a, 0xc2, 0x5b, 0xc1, 0x24, 0xf4, 0x31, 0x73, 0x30, 0x82, 0xc6, 0x9d, 0xba, 0x02 +.byte 0xf7, 0x3e, 0x7c, 0x44, 0x5f, 0x83, 0x0d, 0xf3, 0xf1, 0xdd, 0x20, 0x69, 0x16, 0x09, 0x50, 0xe2 +.byte 0xd4, 0x55, 0xb6, 0xe0, 0x80, 0x72, 0x76, 0x6e, 0x4c, 0x47, 0xb7, 0x75, 0x55, 0x59, 0xb4, 0x53 +.byte 0x74, 0xd9, 0x94, 0xc6, 0x41, 0xad, 0x58, 0x8a, 0x31, 0x66, 0x0f, 0x1e, 0xa2, 0x1b, 0x29, 0x40 +.byte 0x4e, 0x2f, 0xdf, 0x7b, 0xe6, 0x16, 0x2c, 0x2d, 0xfc, 0xbf, 0xec, 0xf3, 0xb4, 0xfa, 0xbe, 0x18 +.byte 0xf6, 0x9b, 0x49, 0xd4, 0xee, 0x05, 0x6e, 0xd9, 0x34, 0xf3, 0x9c, 0xf1, 0xec, 0x01, 0x8b, 0xd1 +.byte 0x20, 0xc6, 0x0f, 0xa0, 0xb5, 0xbc, 0x17, 0x4e, 0x48, 0x7b, 0x51, 0xc2, 0xfc, 0xe9, 0x5c, 0x69 +.byte 0x37, 0x47, 0x66, 0xb3, 0x68, 0xf8, 0x15, 0x28, 0xf0, 0xb9, 0xd3, 0xa4, 0x15, 0xcc, 0x5a, 0x4f +.byte 0xba, 0x52, 0x70, 0xa3, 0x12, 0x45, 0xdd, 0xc6, 0xba, 0x4e, 0xfb, 0xc2, 0xd0, 0xf7, 0xa8, 0x52 +.byte 0x27, 0x6d, 0x6e, 0x79, 0xb5, 0x8c, 0xfc, 0x7b, 0x8c, 0xc1, 0x16, 0x4c, 0xee, 0x80, 0x7f, 0xbe +.byte 0xf0, 0x76, 0xbe, 0x41, 0x53, 0x12, 0x33, 0xae, 0x5a, 0x38, 0x42, 0xab, 0xd7, 0x0f, 0x3e, 0x41 +.byte 0x8d, 0x76, 0x07, 0x32, 0xd5, 0xab, 0x89, 0xf6, 0x4e, 0x67, 0xd9, 0xb1, 0x42, 0x75, 0x23, 0x6e +.byte 0xf3, 0xcd, 0x42, 0xb2, 0xfc, 0x55, 0xf5, 0x53, 0x87, 0x17, 0x3b, 0xc0, 0x33, 0x58, 0xf1, 0x52 +.byte 0xd2, 0xf9, 0x80, 0xa4, 0xf0, 0xe8, 0xf0, 0x3b, 0x8b, 0x38, 0xcc, 0xa4, 0xc6, 0x90, 0x7f, 0x0f +.byte 0x9c, 0xfd, 0x8b, 0xd1, 0xa3, 0xcf, 0xda, 0x83, 0xa7, 0x69, 0xc9, 0x50, 0x36, 0xd5, 0x5c, 0x05 +.byte 0xd2, 0x0a, 0x41, 0x74, 0xdb, 0x63, 0x11, 0x37, 0xc1, 0xa5, 0xa0, 0x96, 0x4b, 0x1e, 0x8c, 0x16 +.byte 0x12, 0x77, 0xae, 0x94, 0x34, 0x7b, 0x1e, 0x7f, 0xc2, 0x66, 0x00, 0xe4, 0xaa, 0x83, 0xea, 0x8a +.byte 0x90, 0xad, 0xce, 0x36, 0x44, 0x4d, 0xd1, 0x51, 0xe9, 0xbc, 0x1f, 0xf3, 0x6a, 0x05, 0xfd, 0xc0 +.byte 0x74, 0x1f, 0x25, 0x19, 0x40, 0x51, 0x6e, 0xea, 0x82, 0x51, 0x40, 0xdf, 0x9b, 0xb9, 0x08, 0x2a +.byte 0x06, 0x02, 0xd5, 0x23, 0x1c, 0x13, 0xd6, 0xe9, 0xdb, 0xdb, 0xc6, 0xb0, 0x7a, 0xcb, 0x7b, 0x27 +.byte 0x9b, 0xfb, 0xe0, 0xd5, 0x46, 0x24, 0xed, 0x10, 0x4b, 0x63, 0x4b, 0xa5, 0x05, 0x8f, 0xba, 0xb8 +.byte 0x1d, 0x2b, 0xa6, 0xfa, 0x91, 0xe2, 0x92, 0x52, 0xbd, 0xec, 0xeb, 0x67, 0x97, 0x6d, 0x9a, 0x2d +.byte 0x9f, 0x81, 0x32, 0x05, 0x67, 0x32, 0xfb, 0x48, 0x08, 0x3f, 0xd9, 0x25, 0xb8, 0x04, 0x25, 0x2f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65 +.byte 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30 +.byte 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73 +.byte 0x32, 0x0c, 0x73, 0xe4, 0xbd, 0x13, 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6 +.byte 0xdf, 0x75, 0x47, 0x66, 0xf4, 0x7c, 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47 +.byte 0x72, 0x67, 0x55, 0xf4, 0xa5, 0xe8, 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21 +.byte 0x68, 0xbe, 0x44, 0x53, 0xbf, 0x8d, 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4 +.byte 0xc0, 0x9c, 0xb3, 0xe4, 0x77, 0x5c, 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed +.byte 0x9a, 0x72, 0xde, 0x2b, 0xbd, 0x94, 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64 +.byte 0x39, 0x7a, 0x26, 0x36, 0xf7, 0x24, 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97 +.byte 0x35, 0xd6, 0x75, 0x01, 0x80, 0xe0, 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87 +.byte 0x96, 0x5e, 0x41, 0xaf, 0xeb, 0x87, 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22 +.byte 0xbb, 0xda, 0x1f, 0x2a, 0xdd, 0x52, 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3 +.byte 0xb0, 0x77, 0x97, 0x64, 0x9c, 0xc0, 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30 +.byte 0xdb, 0x00, 0x18, 0x96, 0x4c, 0xa1, 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07 +.byte 0xac, 0xd4, 0xc5, 0x37, 0x82, 0xeb, 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3 +.byte 0xd8, 0x53, 0xec, 0x79, 0x89, 0x60, 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83 +.byte 0x3f, 0xb2, 0x42, 0x57, 0x5a, 0xdb, 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c +.byte 0xab, 0xe3, 0xc2, 0xb1, 0x45, 0x44, 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f +.byte 0x53, 0xc0, 0xed, 0xa9, 0x7e, 0xd4, 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6 +.byte 0xbf, 0xd1, 0x10, 0x45, 0xe0, 0xa6, 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71 +.byte 0x02, 0xa1, 0x6a, 0xa3, 0xd6, 0x33, 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e +.byte 0x45, 0x71, 0x77, 0x0f, 0x81, 0x5d, 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d +.byte 0x23, 0x5f, 0x1b, 0x3d, 0x41, 0xaf, 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18 +.byte 0xf7, 0x71, 0xc0, 0xb6, 0x1d, 0x31, 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92 +.byte 0xb2, 0xf7, 0xe1, 0x84, 0x4b, 0xf2, 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36 +.byte 0x54, 0xbd, 0x1f, 0x5e, 0x59, 0x15, 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16 +.byte 0x6c, 0x47, 0x5a, 0x65, 0xf3, 0x0e, 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0 +.byte 0xb4, 0x7d, 0xa5, 0xb0, 0xdd, 0x3f, 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06 +.byte 0x7f, 0x12, 0x57, 0xb6, 0xa9, 0x23, 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7 +.byte 0xb0, 0xb1, 0x3b, 0xbc, 0x98, 0xbd, 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6 +.byte 0xf2, 0xb2, 0x58, 0xe4, 0x02, 0x09, 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1 +.byte 0xec, 0xf7, 0x00, 0x11, 0xdf, 0x65, 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f +.byte 0xd5, 0x2c, 0x61, 0x84, 0xaa, 0x72, 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc +.byte 0x2f, 0x14, 0x3e, 0xe6, 0x85, 0xdd, 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e +.byte 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20 +.byte 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x58, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e +.byte 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe, 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57 +.byte 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2, 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde +.byte 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6, 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea +.byte 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33, 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff +.byte 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1, 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e +.byte 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22, 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f +.byte 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f, 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38 +.byte 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e, 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0 +.byte 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21, 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda +.byte 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2, 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77 +.byte 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0, 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1 +.byte 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee, 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61 +.byte 0x51, 0xde, 0xac, 0x87, 0x07, 0x94, 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81 +.byte 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c, 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a +.byte 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1, 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8 +.byte 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98, 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36 +.byte 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1, 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd +.byte 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9, 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd +.byte 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17, 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47 +.byte 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e, 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29 +.byte 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5, 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46 +.byte 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51, 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78 +.byte 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15, 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b +.byte 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12, 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74 +.byte 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f, 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07 +.byte 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48, 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3 +.byte 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83, 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1 +.byte 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c, 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a +.byte 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d, 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d +.byte 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2, 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe +.byte 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e, 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff +.byte 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30 +.byte 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29 +.byte 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65 +.byte 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 +.byte 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec +.byte 0x09, 0x4a, 0xf3, 0x16, 0x4a, 0x3e, 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07 +.byte 0xb6, 0xdc, 0x16, 0xfb, 0x5a, 0x8b, 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11 +.byte 0x89, 0x8e, 0xea, 0x06, 0xdf, 0xf7, 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03 +.byte 0xe0, 0x1e, 0x82, 0x18, 0x38, 0x8b, 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb +.byte 0x02, 0x51, 0x7d, 0x22, 0xd8, 0x0a, 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39 +.byte 0xdc, 0x75, 0xca, 0x68, 0x07, 0x0c, 0x1f, 0xea, 0x52, 0x00, 0x26, 0x01, 0x30, 0x50, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d +.byte 0x62, 0x48, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54 +.byte 0x52, 0x55, 0x53, 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20 +.byte 0x33, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99 +.byte 0xf1, 0x84, 0x34, 0x70, 0xba, 0x2f, 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62 +.byte 0xbc, 0x99, 0xfd, 0x82, 0x97, 0xd2, 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95 +.byte 0x22, 0x73, 0x99, 0x8d, 0xda, 0x15, 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98 +.byte 0x00, 0xbc, 0x3c, 0x3d, 0xac, 0xa1, 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64 +.byte 0xda, 0x88, 0x3e, 0x29, 0xb8, 0x0f, 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd +.byte 0x19, 0xe9, 0xee, 0x18, 0x4f, 0x4c, 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8 +.byte 0x3a, 0xb8, 0xc4, 0x18, 0x64, 0x1e, 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9 +.byte 0x94, 0x6b, 0x13, 0x97, 0x6f, 0x12, 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68 +.byte 0x36, 0xed, 0x08, 0x7b, 0xb7, 0xf5, 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34 +.byte 0x87, 0x4e, 0x17, 0xea, 0xaf, 0x8b, 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37 +.byte 0xf2, 0x1d, 0xd9, 0xd1, 0x2d, 0x0d, 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a +.byte 0xbd, 0xc7, 0x1a, 0xb1, 0xe1, 0x14, 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe +.byte 0xb4, 0xb1, 0x46, 0x20, 0xa2, 0xfb, 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96 +.byte 0xf2, 0xc5, 0xef, 0x85, 0x70, 0xad, 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f +.byte 0xcb, 0x52, 0x83, 0x62, 0x7c, 0xee, 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05 +.byte 0xd8, 0xf9, 0x4d, 0xc4, 0x27, 0xfa, 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x52, 0x00, 0x26, 0x02, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30 +.byte 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x54, 0x57, 0x43, 0x41, 0x20, 0x43, 0x59, 0x42 +.byte 0x45, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc6, 0xf8, 0xca, 0x1e, 0xd9 +.byte 0x09, 0x20, 0x7e, 0x1d, 0x6c, 0x4e, 0xce, 0x8f, 0xe3, 0x47, 0x33, 0x44, 0x9c, 0xc7, 0xc9, 0x69 +.byte 0xaa, 0x3a, 0x5b, 0x78, 0xee, 0x70, 0xd2, 0x92, 0xf8, 0x04, 0xb3, 0x52, 0x52, 0x1d, 0x67, 0x72 +.byte 0x28, 0xa1, 0xdf, 0x8b, 0x5d, 0x95, 0x0a, 0xfe, 0xea, 0xcd, 0xed, 0xf7, 0x29, 0xce, 0xf0, 0x6f +.byte 0x7f, 0xac, 0xcd, 0x3d, 0xef, 0xb3, 0x1c, 0x45, 0x6a, 0xf7, 0x28, 0x90, 0xf1, 0x61, 0x57, 0xc5 +.byte 0x0c, 0xc4, 0xa3, 0x50, 0x5d, 0xde, 0xd4, 0xb5, 0xcb, 0x19, 0xca, 0x80, 0xb9, 0x75, 0xce, 0x29 +.byte 0xce, 0xd2, 0x85, 0x22, 0xec, 0x02, 0x63, 0xcc, 0x44, 0x30, 0x20, 0xda, 0xea, 0x91, 0x5b, 0x56 +.byte 0xe6, 0x1d, 0x1c, 0xd5, 0x9d, 0x66, 0xc7, 0x3f, 0xdf, 0x86, 0xca, 0x4b, 0x53, 0xc4, 0xd9, 0x8d +.byte 0xb2, 0x1d, 0xea, 0xf8, 0xdc, 0x27, 0x53, 0xa3, 0x47, 0xe1, 0x61, 0xcc, 0x7d, 0xb5, 0xb0, 0xf8 +.byte 0xee, 0x73, 0x91, 0xc5, 0xce, 0x73, 0x6f, 0xce, 0xee, 0x10, 0x1f, 0x1a, 0x06, 0xcf, 0xe9, 0x27 +.byte 0x60, 0xc5, 0x4f, 0x19, 0xe4, 0xeb, 0xce, 0x22, 0x26, 0x45, 0xd7, 0x60, 0x99, 0xdd, 0xce, 0x4f +.byte 0x37, 0xe0, 0x7f, 0xe7, 0x63, 0xad, 0xb0, 0xb8, 0x59, 0xb8, 0xd0, 0x06, 0x68, 0x35, 0x60, 0xd3 +.byte 0x36, 0xae, 0x71, 0x43, 0x04, 0xf1, 0x69, 0x65, 0x78, 0x7c, 0xf3, 0x1f, 0xf3, 0xca, 0x28, 0x9f +.byte 0x5a, 0x20, 0x95, 0x66, 0xb4, 0xcd, 0xb7, 0xee, 0x8f, 0x78, 0xa4, 0x45, 0x18, 0xe9, 0x26, 0x2f +.byte 0x8d, 0x9b, 0x29, 0x28, 0xb1, 0xa4, 0xb7, 0x3a, 0x6d, 0xb9, 0xd4, 0x1c, 0x38, 0x72, 0x45, 0x58 +.byte 0xb1, 0x5e, 0xeb, 0xf0, 0x28, 0x9b, 0xb7, 0x82, 0xca, 0xfd, 0xcf, 0xd6, 0x33, 0x0f, 0x9f, 0xfb +.byte 0x97, 0x9e, 0xb1, 0x1c, 0x9c, 0x9e, 0xea, 0x5f, 0x5e, 0xdb, 0xaa, 0xdd, 0x54, 0xe9, 0x30, 0x21 +.byte 0x28, 0x6d, 0x8e, 0x79, 0xf3, 0x75, 0x92, 0x8c, 0x26, 0xfe, 0xdc, 0xc5, 0xf6, 0xc3, 0xb0, 0xdf +.byte 0x44, 0x59, 0x43, 0xa3, 0xb6, 0x03, 0x28, 0xf6, 0x08, 0x30, 0xaa, 0x0d, 0x33, 0xe1, 0xef, 0x9c +.byte 0xa9, 0x07, 0x22, 0xe3, 0x59, 0x5b, 0x40, 0x8f, 0xda, 0x88, 0xb7, 0x69, 0x08, 0xa8, 0xb7, 0x23 +.byte 0x2e, 0x44, 0x09, 0x59, 0x37, 0x5b, 0xc7, 0xe3, 0x17, 0xf2, 0x22, 0xeb, 0x6e, 0x39, 0x52, 0xc5 +.byte 0xde, 0x54, 0xa7, 0x98, 0xc9, 0x4b, 0x20, 0x95, 0xdc, 0x46, 0x89, 0x5f, 0xb4, 0x12, 0xf9, 0x85 +.byte 0x29, 0x8e, 0xeb, 0xc8, 0x27, 0x15, 0x20, 0xc0, 0x4b, 0xd4, 0xcc, 0x7c, 0x0c, 0x6c, 0x34, 0x0c +.byte 0x26, 0x9b, 0x26, 0x31, 0xa6, 0x3c, 0xa7, 0xf6, 0xd9, 0xd0, 0x4b, 0xa2, 0x64, 0xff, 0x3b, 0x99 +.byte 0x41, 0x72, 0xc1, 0xe0, 0x70, 0x97, 0xf1, 0x24, 0xbb, 0x2b, 0xc4, 0x74, 0x22, 0xb1, 0xac, 0x6b +.byte 0x22, 0x32, 0x24, 0xd3, 0x78, 0x2a, 0xc0, 0xc0, 0xa1, 0x2f, 0xf1, 0x52, 0x05, 0xc9, 0x3f, 0xef +.byte 0x76, 0x66, 0xe2, 0x45, 0xd8, 0x0d, 0x3d, 0xad, 0x95, 0xc8, 0xc7, 0x89, 0x26, 0xc8, 0x0f, 0xae +.byte 0xa7, 0x03, 0x2e, 0xfb, 0xc1, 0x5f, 0xfa, 0x20, 0xe1, 0x70, 0xad, 0xb0, 0x65, 0x20, 0x37, 0x33 +.byte 0x60, 0xb0, 0xd5, 0xaf, 0xd7, 0x0c, 0x1c, 0xc2, 0x90, 0x70, 0xd7, 0x4a, 0x18, 0xbc, 0x7e, 0x01 +.byte 0xb0, 0xb0, 0xeb, 0x15, 0x1e, 0x44, 0x06, 0xcd, 0xa4, 0x4f, 0xe8, 0x0c, 0xd1, 0xc3, 0x20, 0x10 +.byte 0xe1, 0x54, 0x65, 0x9e, 0xb6, 0x51, 0xd0, 0x1a, 0x76, 0x6b, 0x42, 0x5a, 0x58, 0x76, 0x34, 0xea +.byte 0xb7, 0x37, 0x19, 0xae, 0x2e, 0x75, 0xf9, 0x96, 0xe5, 0xc1, 0x59, 0xf7, 0x94, 0x57, 0x29, 0x25 +.byte 0x8d, 0x3a, 0x4c, 0xab, 0x4d, 0x9a, 0x41, 0xd0, 0x5f, 0x26, 0x03, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x52, 0x00, 0x5b, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00 +.byte 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4 +.byte 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1 +.byte 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73 +.byte 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c +.byte 0x1d, 0x52, 0x00, 0x78, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 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, 0x47 +.byte 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5 +.byte 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a +.byte 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2 +.byte 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4 +.byte 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87 +.byte 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x53 +.byte 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x45, 0x53, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74 +.byte 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f +.byte 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32 +.byte 0x36, 0x33, 0x34, 0x30, 0x36, 0x38, 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, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2 +.byte 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0, 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3 +.byte 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2, 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59 +.byte 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4, 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5 +.byte 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71, 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f +.byte 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9, 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51 +.byte 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37, 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf +.byte 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50, 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a +.byte 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02, 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37 +.byte 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7, 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67 +.byte 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4, 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20 +.byte 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b, 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e +.byte 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f, 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca +.byte 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92, 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76 +.byte 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86, 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e +.byte 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87, 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63 +.byte 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19, 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c +.byte 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38, 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55 +.byte 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf, 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79 +.byte 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4, 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a +.byte 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96, 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63 +.byte 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8, 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6 +.byte 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3, 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d +.byte 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2, 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2 +.byte 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24, 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71 +.byte 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01, 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3 +.byte 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca, 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4 +.byte 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d, 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f +.byte 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64, 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a +.byte 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b, 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf +.byte 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6, 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78 +.byte 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b, 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3 +.byte 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x01 +.byte 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31 +.byte 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20 +.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53 +.byte 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x31, 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, 0xba, 0x39, 0xc1, 0x37, 0x7a, 0x68, 0x45, 0x2b, 0x14, 0xb4, 0xeb, 0xe4 +.byte 0x13, 0xeb, 0x57, 0x75, 0x23, 0x4d, 0x8f, 0x24, 0x2d, 0x16, 0xe8, 0xae, 0x8e, 0xc9, 0x7d, 0xa4 +.byte 0x57, 0x3b, 0x2a, 0x76, 0x25, 0x33, 0x83, 0x6c, 0xea, 0x32, 0x8a, 0x94, 0x9b, 0x4e, 0x3c, 0x96 +.byte 0xe4, 0xfd, 0x51, 0xbf, 0x99, 0xc9, 0x93, 0x7e, 0xbf, 0xf9, 0xad, 0xa7, 0xb2, 0x48, 0x2b, 0x07 +.byte 0x1c, 0x27, 0xf5, 0x4c, 0xbc, 0x70, 0x12, 0x77, 0xa4, 0x85, 0x54, 0xb5, 0xfd, 0x90, 0x7a, 0xe4 +.byte 0xa3, 0xe4, 0x51, 0x58, 0x03, 0xcd, 0x10, 0x79, 0x79, 0xee, 0x6b, 0x93, 0x1f, 0x64, 0x8e, 0x6b +.byte 0x64, 0xab, 0xa3, 0x13, 0xe3, 0x71, 0xfe, 0x7d, 0xab, 0x9c, 0xdd, 0x27, 0x53, 0x37, 0xb3, 0xaa +.byte 0x18, 0xc2, 0x59, 0x26, 0xec, 0x5b, 0x1f, 0xd2, 0xe6, 0x65, 0x7c, 0xef, 0x93, 0xbd, 0xd8, 0x58 +.byte 0x5c, 0x0b, 0xc0, 0xe3, 0x65, 0x6f, 0x3c, 0xc7, 0xca, 0x59, 0xe3, 0xfe, 0x6e, 0x5f, 0xac, 0x83 +.byte 0xbe, 0xfd, 0x5d, 0x25, 0x4e, 0x2a, 0x29, 0x3b, 0xd6, 0x0b, 0xab, 0x17, 0x32, 0x78, 0xa4, 0xe1 +.byte 0x3e, 0x94, 0x46, 0xbe, 0x62, 0x6e, 0x9b, 0xde, 0x46, 0xa8, 0xb1, 0x16, 0xe7, 0x85, 0x6e, 0xf4 +.byte 0x08, 0x40, 0x45, 0x11, 0xa0, 0x9e, 0x54, 0x44, 0x84, 0xf7, 0xd8, 0x36, 0xce, 0xf5, 0x50, 0x47 +.byte 0xdc, 0x2c, 0x30, 0x9b, 0xee, 0xc0, 0xf5, 0x96, 0xd2, 0xfe, 0x09, 0x86, 0xc7, 0x06, 0x59, 0xae +.byte 0x4f, 0xae, 0x8e, 0x11, 0x98, 0x7b, 0xf3, 0x0b, 0x52, 0xaa, 0x62, 0x26, 0xaa, 0x21, 0xdf, 0x8e +.byte 0x25, 0x33, 0x79, 0x97, 0x16, 0x49, 0x8d, 0xf5, 0x3e, 0xd5, 0x47, 0x9f, 0x37, 0x31, 0x49, 0x33 +.byte 0x72, 0x05, 0x4d, 0x0c, 0xb6, 0x55, 0x8c, 0xf1, 0x57, 0x8f, 0x8a, 0x87, 0xd1, 0xad, 0xc5, 0x11 +.byte 0x12, 0x39, 0xa0, 0xad, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64 +.byte 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x34 +.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, 0xc5, 0xd2, 0x7a, 0xa1, 0xd6, 0x8a, 0xbf, 0x16, 0x31, 0xd0, 0x98, 0xd1, 0x3a, 0x94, 0xfc +.byte 0x5a, 0xb8, 0x6e, 0x22, 0xc1, 0x62, 0xf7, 0xa7, 0x0a, 0x27, 0xef, 0x50, 0xf6, 0x2e, 0xb1, 0x9e +.byte 0x68, 0x12, 0xf0, 0x6c, 0x24, 0x63, 0x39, 0xf1, 0xf0, 0xdf, 0x10, 0xc6, 0xde, 0xb7, 0x52, 0x20 +.byte 0xd5, 0x52, 0x5b, 0x42, 0x99, 0x9e, 0xf3, 0xa0, 0xbe, 0x52, 0x1f, 0x5f, 0xcc, 0x67, 0x6d, 0xa7 +.byte 0x2e, 0x50, 0xa2, 0xc1, 0x97, 0x8d, 0xb6, 0xf8, 0x95, 0xf5, 0xb0, 0xba, 0xdc, 0x9d, 0xe0, 0xbe +.byte 0xcb, 0xdf, 0xf7, 0x38, 0xf2, 0x47, 0xf5, 0xa6, 0x9a, 0x92, 0x95, 0x2a, 0x62, 0x59, 0x50, 0x0b +.byte 0xa2, 0xb1, 0x35, 0xe7, 0x65, 0xb2, 0x61, 0xb2, 0xea, 0x92, 0x71, 0x69, 0xe4, 0x29, 0xf0, 0x4f +.byte 0x81, 0x81, 0x04, 0x3c, 0xb2, 0xa5, 0x5b, 0xd4, 0xc5, 0xa8, 0x59, 0x67, 0x7b, 0x55, 0x1c, 0x49 +.byte 0xab, 0x7a, 0x9d, 0xc2, 0xe7, 0x73, 0x4d, 0xef, 0xcd, 0x09, 0xc2, 0xc4, 0x57, 0x12, 0xdb, 0x01 +.byte 0x0e, 0x23, 0x79, 0x09, 0x07, 0x3b, 0xa2, 0xe8, 0xfc, 0x8a, 0xcf, 0x8f, 0xc0, 0x46, 0x24, 0x9c +.byte 0x38, 0x27, 0xe0, 0x83, 0x9d, 0x1b, 0xa0, 0xbf, 0x78, 0x15, 0x10, 0xeb, 0x86, 0x4e, 0x0a, 0x5a +.byte 0xfd, 0xdf, 0xda, 0x2c, 0x82, 0x7e, 0xee, 0xca, 0xf6, 0x29, 0xe1, 0xfa, 0x71, 0xa1, 0xf7, 0x88 +.byte 0x68, 0x9c, 0x9c, 0xf0, 0x8d, 0xbe, 0x0f, 0x49, 0x91, 0xd8, 0xea, 0x3a, 0xf9, 0xfd, 0xd0, 0x68 +.byte 0x71, 0xdb, 0xe9, 0xb5, 0x2b, 0x4e, 0x82, 0x92, 0x6f, 0x66, 0x1f, 0xe0, 0xf0, 0xdc, 0x4c, 0xec +.byte 0xca, 0xd1, 0xea, 0xba, 0x74, 0x06, 0xf9, 0xb3, 0x84, 0x90, 0x94, 0xd1, 0x5f, 0x8e, 0x73, 0x19 +.byte 0x10, 0x5d, 0x02, 0xe5, 0x70, 0xa5, 0xc0, 0x10, 0xd0, 0x10, 0x7c, 0x6f, 0xc5, 0x58, 0x49, 0xb4 +.byte 0xb0, 0x6e, 0x9a, 0xda, 0x7d, 0x95, 0xf5, 0xcc, 0xda, 0x02, 0xaf, 0xb8, 0x2c, 0x7d, 0x79, 0x8f +.byte 0xbe, 0x43, 0xf1, 0xf9, 0x28, 0x28, 0x8d, 0x09, 0x43, 0xf8, 0x08, 0xdd, 0x6b, 0xc8, 0x8b, 0x2c +.byte 0x24, 0xb1, 0x8d, 0x52, 0x07, 0xbd, 0x78, 0x9b, 0xcb, 0xca, 0x68, 0xb2, 0xa4, 0xdd, 0x0c, 0x4c +.byte 0x79, 0x60, 0xc6, 0x99, 0xd1, 0x93, 0xf1, 0x30, 0x1a, 0x07, 0xd3, 0xae, 0x22, 0xc2, 0xea, 0xce +.byte 0xf1, 0x84, 0x09, 0xcc, 0xe0, 0x14, 0x6e, 0x7f, 0x3f, 0x7e, 0xd2, 0x82, 0x85, 0xac, 0xdc, 0xa9 +.byte 0x16, 0x4e, 0x85, 0xa0, 0x60, 0xcb, 0xf6, 0x9c, 0xd7, 0xc8, 0xb3, 0x8e, 0xed, 0xc6, 0x9b, 0x98 +.byte 0x75, 0x0d, 0x55, 0xe8, 0x5f, 0xe5, 0x95, 0x8b, 0x02, 0xa4, 0xae, 0x43, 0x29, 0x28, 0x11, 0xa4 +.byte 0xe6, 0x12, 0x30, 0x01, 0x4b, 0x75, 0x6b, 0x1e, 0x66, 0x9d, 0x79, 0x2f, 0xa5, 0x76, 0x2f, 0x1d +.byte 0x40, 0xb4, 0x6d, 0xc9, 0x7d, 0x79, 0x08, 0xec, 0xd1, 0x6a, 0xb6, 0x5d, 0x2a, 0xb2, 0xa5, 0x66 +.byte 0xbd, 0x6b, 0x85, 0xf4, 0x74, 0x56, 0xc3, 0xf5, 0xe7, 0x75, 0x52, 0x28, 0x2c, 0xa5, 0xff, 0x66 +.byte 0x47, 0xa5, 0xd4, 0xfe, 0xfe, 0x9e, 0x54, 0xbf, 0x65, 0x7e, 0x01, 0xd6, 0x30, 0x8f, 0xa5, 0x36 +.byte 0x9c, 0xa2, 0x50, 0x1c, 0xee, 0x38, 0x80, 0x01, 0x48, 0xc6, 0xc7, 0x74, 0xf4, 0xc6, 0xac, 0xc3 +.byte 0x40, 0x49, 0x16, 0x61, 0x74, 0x2c, 0xaf, 0x8c, 0x6f, 0x35, 0xed, 0x7b, 0x18, 0x00, 0x5b, 0x36 +.byte 0x3c, 0x9c, 0x50, 0x0d, 0xca, 0x92, 0x33, 0x10, 0xf1, 0x26, 0x49, 0x6d, 0xdf, 0x75, 0x24, 0x37 +.byte 0x82, 0x22, 0xd7, 0xe8, 0x96, 0xfd, 0x15, 0x4b, 0x02, 0x96, 0x3e, 0x07, 0x72, 0x95, 0x7e, 0xab +.byte 0x3d, 0x4c, 0x2e, 0xd7, 0xca, 0xf0, 0xdf, 0xe0, 0x58, 0x3f, 0x2d, 0x2f, 0x04, 0x9a, 0x38, 0xa3 +.byte 0x01, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x78, 0x00, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a +.byte 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d +.byte 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x35, 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, 0x0b, 0x50, 0x74, 0x8d, 0x64, 0x32, 0x99, 0x99, 0xb3, 0xd2, 0x60 +.byte 0x08, 0xb8, 0x22, 0x8e, 0x46, 0x74, 0x2c, 0x78, 0xc0, 0x2b, 0x44, 0x2d, 0x6d, 0x5f, 0x1d, 0xc9 +.byte 0xae, 0x4b, 0x52, 0x20, 0x83, 0x3d, 0xb8, 0x14, 0x6d, 0x53, 0x87, 0x60, 0x9e, 0x5f, 0x6c, 0x85 +.byte 0xdb, 0x06, 0x14, 0x95, 0xe0, 0xc7, 0x28, 0xff, 0x9d, 0x5f, 0xe4, 0xaa, 0xf1, 0xb3, 0x8b, 0x6d +.byte 0xed, 0x4f, 0x2f, 0x4b, 0xc9, 0x4a, 0x94, 0x91, 0x64, 0x75, 0xfe, 0x01, 0xec, 0xc1, 0xd8, 0xeb +.byte 0x7a, 0x94, 0x78, 0x56, 0x18, 0x43, 0x5f, 0x6b, 0x81, 0xcb, 0xf6, 0xbc, 0xda, 0xb4, 0x0c, 0xb6 +.byte 0x29, 0x93, 0x08, 0x69, 0x8f, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1f, 0x4b, 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20 +.byte 0x52, 0x6f, 0x7a, 0x6c, 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e +.byte 0x41, 0x2e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41 +.byte 0x46, 0x49, 0x52, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 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, 0xbc, 0x3e +.byte 0x50, 0xa8, 0x4b, 0xcd, 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22 +.byte 0xb0, 0xfa, 0xb5, 0x7b, 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51 +.byte 0xe4, 0x20, 0x3d, 0x85, 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae +.byte 0x26, 0xee, 0xeb, 0x53, 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda +.byte 0xd2, 0x8e, 0x0d, 0x92, 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80 +.byte 0xb9, 0x02, 0xbd, 0x4a, 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b +.byte 0x9c, 0x3d, 0xb3, 0xb0, 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14 +.byte 0xbd, 0x36, 0x84, 0xda, 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60 +.byte 0xee, 0x2f, 0x75, 0xb6, 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef +.byte 0x88, 0x0d, 0x6a, 0xfa, 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9 +.byte 0xce, 0xd7, 0x72, 0x3b, 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff +.byte 0x3b, 0x95, 0x9e, 0xc1, 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6 +.byte 0x87, 0xe5, 0xd6, 0xf9, 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c +.byte 0xd5, 0x4d, 0x9d, 0x02, 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f +.byte 0x6c, 0x88, 0x00, 0xdc, 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c +.byte 0xbb, 0xca, 0x41, 0xcd, 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09 +.byte 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c +.byte 0xc4, 0x6e, 0x8a, 0x21, 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82 +.byte 0x9c, 0x97, 0xc5, 0xd7, 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19 +.byte 0xc2, 0x74, 0xa4, 0x31, 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c +.byte 0x8e, 0xb7, 0xb8, 0x79, 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07 +.byte 0x92, 0xd4, 0xb3, 0xd0, 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60 +.byte 0x2f, 0x2b, 0x32, 0x39, 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62 +.byte 0xd6, 0x47, 0x25, 0x91, 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f +.byte 0x29, 0xf0, 0xa1, 0x30, 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0 +.byte 0xe2, 0x91, 0x43, 0x8f, 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85 +.byte 0x70, 0x9b, 0xca, 0xea, 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9 +.byte 0xf0, 0x36, 0xc7, 0xcc, 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec +.byte 0x61, 0xaa, 0x71, 0x7c, 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61 +.byte 0xf5, 0x11, 0xf7, 0x05, 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09 +.byte 0x4e, 0x26, 0xdc, 0xe3, 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98 +.byte 0xb8, 0x71, 0xa5, 0x15, 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d +.byte 0x91, 0x44, 0xfd, 0x56, 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc +.byte 0xc6, 0x4b, 0x76, 0xc8, 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f +.byte 0x9e, 0x22, 0x82, 0xee, 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32 +.byte 0x2c, 0x64, 0x00, 0x26, 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac +.byte 0x6d, 0x90, 0xa2, 0x95, 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8 +.byte 0x21, 0xaa, 0x29, 0x7e, 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3 +.byte 0xb5, 0x09, 0x67, 0xde, 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb +.byte 0x81, 0xb6, 0x0f, 0xa0, 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d +.byte 0x15, 0xc0, 0x6f, 0xde, 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8 +.byte 0x9b, 0x67, 0xd5, 0x98, 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b +.byte 0x74, 0xb4, 0x00, 0x04, 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92 +.byte 0x33, 0x1d, 0xc0, 0xb7, 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02 +.byte 0x6b, 0x9e, 0xef, 0xbc, 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2 +.byte 0x4d, 0xb7, 0x04, 0xa9, 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe +.byte 0x6c, 0xe1, 0x90, 0x8c, 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f +.byte 0x6a, 0x0a, 0x42, 0xb1, 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05 +.byte 0x22, 0xd2, 0x26, 0xe1, 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x54 +.byte 0x00, 0x26, 0x02, 0x30, 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x53, 0x4b, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61 +.byte 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0a, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 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, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d +.byte 0x2d, 0x6d, 0x14, 0xf6, 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab +.byte 0x46, 0x50, 0xe0, 0xc1, 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c +.byte 0x9f, 0xd8, 0x97, 0x02, 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45 +.byte 0xf6, 0x2f, 0x64, 0xd4, 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc +.byte 0x1b, 0x3f, 0xba, 0xbe, 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa +.byte 0x5f, 0xda, 0x4c, 0xce, 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c +.byte 0x0c, 0x00, 0x16, 0x3c, 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc +.byte 0xe8, 0xe5, 0xe1, 0x66, 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05 +.byte 0x63, 0xc6, 0x80, 0x6a, 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95 +.byte 0x73, 0xf4, 0xe1, 0x25, 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8 +.byte 0x04, 0x14, 0x61, 0x2d, 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92 +.byte 0x18, 0x1b, 0x04, 0x5a, 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b +.byte 0xb7, 0xd6, 0x57, 0xcc, 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56 +.byte 0x0c, 0x78, 0x4d, 0x9e, 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84 +.byte 0x84, 0xdf, 0xea, 0xc0, 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d +.byte 0x0b, 0xb2, 0x46, 0x90, 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad +.byte 0x6e, 0x97, 0x84, 0x8e, 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92 +.byte 0x1e, 0xc3, 0xf3, 0xc1, 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8 +.byte 0xb4, 0x5a, 0xe4, 0x17, 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3 +.byte 0xd6, 0x9c, 0x34, 0xd8, 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda +.byte 0xb9, 0x08, 0x65, 0xd4, 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e +.byte 0xeb, 0x8d, 0x66, 0xdd, 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d +.byte 0x6b, 0x3a, 0x1c, 0xe7, 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd +.byte 0x9d, 0x60, 0xb2, 0xc2, 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66 +.byte 0x40, 0xa8, 0xe7, 0x11, 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11 +.byte 0xbd, 0xdd, 0xcf, 0x80, 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f +.byte 0x81, 0x7b, 0xe4, 0x44, 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44 +.byte 0x66, 0x4b, 0xe4, 0x32, 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34 +.byte 0x12, 0xd6, 0x7e, 0xb2, 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf +.byte 0xe4, 0x37, 0x1f, 0x11, 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01 +.byte 0x55, 0x33, 0x7d, 0xb0, 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c +.byte 0x7b, 0x5e, 0xc4, 0x03, 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x26 +.byte 0x02, 0x30, 0x54, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e +.byte 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49 +.byte 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41 +.byte 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x14, 0x42, 0x4a, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf1, 0x66, 0x08, 0xbd, 0xd9, 0xc5, 0x15, 0x61 +.byte 0xcb, 0x84, 0x04, 0x41, 0xa5, 0x69, 0x37, 0x77, 0x1d, 0xc1, 0xb0, 0x7b, 0xfa, 0xc3, 0x77, 0x48 +.byte 0x90, 0x13, 0x72, 0x64, 0xd1, 0xb8, 0x7c, 0x90, 0x35, 0x9d, 0x18, 0x79, 0x88, 0xe3, 0x97, 0x01 +.byte 0x3c, 0x47, 0x81, 0xf2, 0x0e, 0xa2, 0x98, 0x0d, 0x9e, 0x3f, 0x37, 0xe0, 0x19, 0xb2, 0x90, 0xf2 +.byte 0x46, 0x1c, 0x92, 0xb1, 0x3a, 0x61, 0xce, 0xfa, 0xb7, 0x46, 0x9e, 0x03, 0x86, 0xd7, 0x33, 0x6e +.byte 0xed, 0xf7, 0x45, 0x8c, 0x76, 0x37, 0xde, 0x6e, 0x96, 0x91, 0xf7, 0xd7, 0x7e, 0x2b, 0x87, 0x17 +.byte 0xd5, 0x8b, 0x35, 0xee, 0x84, 0x91, 0x72, 0x57, 0xdc, 0x60, 0xc3, 0xc3, 0xb9, 0xe7, 0xc7, 0x67 +.byte 0x24, 0x23, 0x4f, 0x63, 0x0a, 0x63, 0xf6, 0x66, 0x7d, 0x4b, 0x55, 0xa7, 0x3f, 0x78, 0x64, 0x49 +.byte 0x69, 0x12, 0x97, 0xe0, 0x4c, 0x0d, 0xd3, 0x09, 0xa0, 0x32, 0x30, 0x3a, 0xfa, 0x9f, 0xc0, 0xf2 +.byte 0x9c, 0xc5, 0x12, 0x2a, 0x2e, 0x1c, 0xb5, 0x04, 0x33, 0xda, 0xa4, 0x38, 0x11, 0x6a, 0xde, 0xc6 +.byte 0x18, 0xf6, 0x47, 0x3a, 0x22, 0x41, 0x87, 0x22, 0xfc, 0xc4, 0x89, 0x28, 0x54, 0xd8, 0x8c, 0xa5 +.byte 0x30, 0x0a, 0xf8, 0x17, 0x16, 0xca, 0xac, 0x37, 0xfd, 0x79, 0xa7, 0x91, 0x17, 0x78, 0x38, 0x99 +.byte 0xad, 0x58, 0xed, 0xb2, 0xde, 0xcc, 0x89, 0x7d, 0x03, 0x9c, 0xb3, 0x89, 0x65, 0xe7, 0xe3, 0x3b +.byte 0xb1, 0x22, 0x86, 0x8f, 0x06, 0x6d, 0x78, 0x07, 0xfd, 0x91, 0x12, 0x7f, 0xb0, 0x6b, 0x1c, 0x89 +.byte 0x0d, 0xf9, 0xb8, 0xcb, 0x74, 0x5b, 0x07, 0xc2, 0xc8, 0xf4, 0x35, 0xd1, 0x64, 0x63, 0x7a, 0xe9 +.byte 0x6e, 0x9a, 0x28, 0xd6, 0x30, 0xbd, 0xe6, 0x1b, 0xdd, 0x15, 0xaf, 0x84, 0xea, 0x9c, 0xc7, 0xca +.byte 0xf5, 0x0e, 0xea, 0xf2, 0x5d, 0x29, 0x87, 0x8f, 0x69, 0x73, 0x39, 0xbe, 0x2e, 0x24, 0x6f, 0x45 +.byte 0x21, 0xac, 0xc5, 0xd4, 0x69, 0x25, 0x06, 0x83, 0xad, 0x7a, 0x48, 0x85, 0x13, 0x2c, 0x0d, 0x06 +.byte 0xb8, 0x6c, 0x79, 0x56, 0xfc, 0xa3, 0x67, 0x32, 0x81, 0xf5, 0x57, 0xa5, 0xca, 0x57, 0x42, 0x69 +.byte 0xe9, 0x5c, 0x24, 0x61, 0xef, 0xe2, 0x30, 0x18, 0x4e, 0x44, 0x98, 0x55, 0x6f, 0x7a, 0xc2, 0x93 +.byte 0xd8, 0x19, 0xb6, 0xde, 0x7c, 0x47, 0x8a, 0x11, 0x4e, 0x49, 0x47, 0xdb, 0x28, 0x94, 0x02, 0x0b +.byte 0x94, 0x4a, 0x2c, 0xf9, 0x12, 0xd0, 0x4f, 0xe8, 0x31, 0x7e, 0x6c, 0x7a, 0xbf, 0xa6, 0x3f, 0x9b +.byte 0x39, 0x3d, 0x02, 0x16, 0xa3, 0x18, 0xb3, 0x67, 0xac, 0x5b, 0x3f, 0x2c, 0x83, 0x2b, 0x67, 0x39 +.byte 0x81, 0x5c, 0xb9, 0x7e, 0x94, 0xd5, 0x64, 0xdd, 0x9e, 0x8f, 0x6e, 0xae, 0xe8, 0x7c, 0x5b, 0xb4 +.byte 0xd7, 0x6a, 0x47, 0x48, 0xd7, 0x7e, 0xb3, 0xd4, 0x2d, 0x8e, 0x56, 0x76, 0x4e, 0xcf, 0x69, 0xf1 +.byte 0x6e, 0x44, 0x6c, 0xd4, 0x24, 0xea, 0x8d, 0x24, 0xa1, 0x18, 0xbf, 0xbd, 0x57, 0xfe, 0xa9, 0x99 +.byte 0x35, 0xb5, 0xdb, 0x10, 0x77, 0xb8, 0x3d, 0x48, 0xba, 0xd6, 0xc1, 0xe7, 0xf1, 0x23, 0x3e, 0xd7 +.byte 0xdf, 0x85, 0x9d, 0x27, 0x3c, 0xd4, 0x40, 0xbd, 0x0a, 0x0c, 0xbd, 0xf5, 0xe7, 0x8d, 0x25, 0xd6 +.byte 0x81, 0x74, 0x87, 0x46, 0xd4, 0x29, 0x75, 0xa2, 0x42, 0x6c, 0xf7, 0x73, 0x89, 0xe7, 0x7d, 0xbf +.byte 0x7a, 0x4a, 0x1f, 0xd3, 0x22, 0xc9, 0x15, 0x55, 0xcf, 0xdf, 0x6f, 0x7c, 0x55, 0xd0, 0xa4, 0x8b +.byte 0x07, 0x11, 0x37, 0x5f, 0x83, 0xa6, 0x26, 0x57, 0xa6, 0x01, 0x5b, 0x7e, 0xfe, 0x58, 0x68, 0x07 +.byte 0xa9, 0xe9, 0x7a, 0xd9, 0xb9, 0xe8, 0xff, 0x50, 0x1f, 0xab, 0xc2, 0xb4, 0xc0, 0xce, 0xe8, 0xea +.byte 0xfd, 0x0f, 0xbd, 0x8d, 0x4d, 0xb8, 0xbc, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x78 +.byte 0x00, 0x30, 0x54, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e +.byte 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49 +.byte 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41 +.byte 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x14, 0x42, 0x4a, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x32, 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, 0x9d +.byte 0xcb, 0x80, 0x91, 0x8d, 0x53, 0x67, 0xb5, 0xb9, 0x50, 0xb1, 0x03, 0xf8, 0xe5, 0x49, 0x1f, 0x41 +.byte 0x22, 0x09, 0xb0, 0x51, 0x52, 0x58, 0xd6, 0x2b, 0x34, 0x8f, 0xc5, 0x12, 0x46, 0x14, 0xc5, 0x8b +.byte 0x2f, 0x2c, 0x84, 0xff, 0x2c, 0x6e, 0xa8, 0xd5, 0xf1, 0x09, 0xe3, 0x03, 0x21, 0x14, 0xc4, 0x43 +.byte 0x3d, 0x7c, 0xc1, 0x2c, 0xc4, 0x4b, 0x6a, 0x4a, 0xcd, 0xe9, 0x87, 0xe0, 0x7d, 0xf6, 0x22, 0xbe +.byte 0xfa, 0x4a, 0x51, 0xb8, 0x30, 0x8a, 0xfd, 0xe1, 0xde, 0x18, 0x12, 0x0a, 0xf6, 0x47, 0xb7, 0xe7 +.byte 0x17, 0xbf, 0x27, 0x8a, 0xd4, 0x41, 0x4c, 0x96, 0x3c, 0x60, 0x96, 0xc1, 0xfd, 0x15, 0x1c, 0x58 +.byte 0x00, 0x26, 0x02, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x43, 0x4e, 0x31, 0x30, 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69 +.byte 0x6e, 0x61, 0x20, 0x46, 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 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, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43 +.byte 0x46, 0x43, 0x41, 0x20, 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd +.byte 0x10, 0x3f, 0x1f, 0x05, 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15 +.byte 0x1d, 0xfa, 0x93, 0x4b, 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2 +.byte 0x55, 0x69, 0x4d, 0x8e, 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c +.byte 0xac, 0xcf, 0x22, 0xae, 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee +.byte 0x2e, 0xde, 0xb3, 0x71, 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c +.byte 0xc9, 0x23, 0x1d, 0x6a, 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15 +.byte 0xcf, 0x72, 0x2f, 0x1d, 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52 +.byte 0xd4, 0x52, 0xab, 0x2e, 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d +.byte 0x20, 0xd4, 0x25, 0xe8, 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f +.byte 0x0a, 0xa9, 0x2d, 0x41, 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a +.byte 0xa8, 0x06, 0xd7, 0xa8, 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c +.byte 0x96, 0x65, 0x7b, 0xca, 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac +.byte 0xc4, 0x63, 0xeb, 0x6f, 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e +.byte 0xf1, 0x72, 0x5d, 0x50, 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a +.byte 0xb5, 0x95, 0x8f, 0xb0, 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1 +.byte 0x39, 0xd3, 0x97, 0x5b, 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20 +.byte 0x49, 0x73, 0xf0, 0x05, 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9 +.byte 0x5a, 0xd6, 0x38, 0xf4, 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9 +.byte 0x95, 0x4f, 0x5f, 0xa7, 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7 +.byte 0xf4, 0xb2, 0x66, 0x2e, 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d +.byte 0x6c, 0x6e, 0x7f, 0x39, 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32 +.byte 0xc6, 0x87, 0xa4, 0x37, 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70 +.byte 0xc1, 0x9b, 0xad, 0x4d, 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70 +.byte 0x45, 0x0d, 0x6b, 0x5e, 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25 +.byte 0x93, 0xda, 0x0a, 0x99, 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83 +.byte 0xad, 0x1d, 0x58, 0x8a, 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6 +.byte 0xe1, 0x7f, 0x8a, 0x04, 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1 +.byte 0x8a, 0x3e, 0x5a, 0xaa, 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34 +.byte 0xfa, 0x38, 0xf9, 0x08, 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8 +.byte 0x54, 0x53, 0x2e, 0x78, 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60 +.byte 0xb9, 0x70, 0xdb, 0x8e, 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1 +.byte 0x41, 0x09, 0xef, 0x72, 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x58, 0x00, 0x26, 0x01, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65 +.byte 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31 +.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 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, 0xcf, 0xeb +.byte 0xa9, 0xb9, 0xf1, 0x99, 0x05, 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56 +.byte 0x10, 0xf5, 0xa0, 0x4f, 0x2c, 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a +.byte 0x74, 0x5f, 0x1d, 0x79, 0x39, 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25 +.byte 0xf9, 0x54, 0x83, 0xd9, 0x1d, 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e +.byte 0xc0, 0xce, 0x9a, 0xaf, 0xac, 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36 +.byte 0xad, 0xac, 0xf6, 0x73, 0xdc, 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37 +.byte 0x6b, 0x1c, 0x26, 0x47, 0xdc, 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d +.byte 0xf5, 0xc1, 0x97, 0x38, 0x58, 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d +.byte 0x83, 0xfe, 0x78, 0x5f, 0x0b, 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f +.byte 0xc8, 0x76, 0xbb, 0xc7, 0x18, 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32 +.byte 0xad, 0x55, 0x88, 0xce, 0xa6, 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f +.byte 0xf0, 0x20, 0x34, 0x16, 0xde, 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2 +.byte 0xa9, 0xa5, 0xaf, 0x9c, 0xc5, 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5 +.byte 0x3a, 0xb2, 0xf3, 0x34, 0x12, 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e +.byte 0x89, 0x5e, 0xa2, 0x89, 0xac, 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89 +.byte 0xee, 0xdd, 0x8c, 0xb5, 0x6b, 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x59, 0x00, 0x26, 0x01, 0x30, 0x57, 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, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.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, 0xda, 0x0e, 0xe6, 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83 +.byte 0x25, 0x6b, 0xea, 0x48, 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1 +.byte 0xe2, 0x67, 0x66, 0xcf, 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf +.byte 0x29, 0x80, 0x65, 0xab, 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d +.byte 0x0a, 0x30, 0xcd, 0x15, 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee +.byte 0xc4, 0x2e, 0xf7, 0xfc, 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e +.byte 0x43, 0x73, 0xf2, 0x41, 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06 +.byte 0x3c, 0x88, 0x69, 0x5b, 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c +.byte 0xca, 0xe5, 0xfd, 0x89, 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44 +.byte 0x61, 0xd1, 0x8d, 0xc7, 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5 +.byte 0x78, 0x16, 0x95, 0xa2, 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93 +.byte 0x13, 0x85, 0x3a, 0x1b, 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb +.byte 0x1f, 0x20, 0x91, 0xab, 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91 +.byte 0x22, 0x51, 0x63, 0x16, 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46 +.byte 0xaa, 0x48, 0xd6, 0x64, 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a +.byte 0x07, 0x85, 0xe7, 0xd3, 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90 +.byte 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5a, 0x00, 0x26, 0x01, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x22, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x13, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x43, 0x41, 0x31, 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, 0xfd, 0x77, 0xaa, 0xa5, 0x1c, 0x90, 0x05, 0x3b, 0xcb, 0x4c, 0x9b +.byte 0x33, 0x8b, 0x5a, 0x14, 0x45, 0xa4, 0xe7, 0x90, 0x16, 0xd1, 0xdf, 0x57, 0xd2, 0x21, 0x10, 0xa4 +.byte 0x17, 0xfd, 0xdf, 0xac, 0xd6, 0x1f, 0xa7, 0xe4, 0xdb, 0x7c, 0xf7, 0xec, 0xdf, 0xb8, 0x03, 0xda +.byte 0x94, 0x58, 0xfd, 0x5d, 0x72, 0x7c, 0x8c, 0x3f, 0x5f, 0x01, 0x67, 0x74, 0x15, 0x96, 0xe3, 0x02 +.byte 0x3c, 0x87, 0xdb, 0xae, 0xcb, 0x01, 0x8e, 0xc2, 0xf3, 0x66, 0xc6, 0x85, 0x45, 0xf4, 0x02, 0xc6 +.byte 0x3a, 0xb5, 0x62, 0xb2, 0xaf, 0xfa, 0x9c, 0xbf, 0xa4, 0xe6, 0xd4, 0x80, 0x30, 0x98, 0xf3, 0x0d +.byte 0xb6, 0x93, 0x8f, 0xa9, 0xd4, 0xd8, 0x36, 0xf2, 0xb0, 0xfc, 0x8a, 0xca, 0x2c, 0xa1, 0x15, 0x33 +.byte 0x95, 0x31, 0xda, 0xc0, 0x1b, 0xf2, 0xee, 0x62, 0x99, 0x86, 0x63, 0x3f, 0xbf, 0xdd, 0x93, 0x2a +.byte 0x83, 0xa8, 0x76, 0xb9, 0x13, 0x1f, 0xb7, 0xce, 0x4e, 0x42, 0x85, 0x8f, 0x22, 0xe7, 0x2e, 0x1a +.byte 0xf2, 0x95, 0x09, 0xb2, 0x05, 0xb5, 0x44, 0x4e, 0x77, 0xa1, 0x20, 0xbd, 0xa9, 0xf2, 0x4e, 0x0a +.byte 0x7d, 0x50, 0xad, 0xf5, 0x05, 0x0d, 0x45, 0x4f, 0x46, 0x71, 0xfd, 0x28, 0x3e, 0x53, 0xfb, 0x04 +.byte 0xd8, 0x2d, 0xd7, 0x65, 0x1d, 0x4a, 0x1b, 0xfa, 0xcf, 0x3b, 0xb0, 0x31, 0x9a, 0x35, 0x6e, 0xc8 +.byte 0x8b, 0x06, 0xd3, 0x00, 0x91, 0xf2, 0x94, 0x08, 0x65, 0x4c, 0xb1, 0x34, 0x06, 0x00, 0x7a, 0x89 +.byte 0xe2, 0xf0, 0xc7, 0x03, 0x59, 0xcf, 0xd5, 0xd6, 0xe8, 0xa7, 0x32, 0xb3, 0xe6, 0x98, 0x40, 0x86 +.byte 0xc5, 0xcd, 0x27, 0x12, 0x8b, 0xcc, 0x7b, 0xce, 0xb7, 0x11, 0x3c, 0x62, 0x60, 0x07, 0x23, 0x3e +.byte 0x2b, 0x40, 0x6e, 0x94, 0x80, 0x09, 0x6d, 0xb6, 0xb3, 0x6f, 0x77, 0x6f, 0x35, 0x08, 0x50, 0xfb +.byte 0x02, 0x87, 0xc5, 0x3e, 0x89, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69 +.byte 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0x31, 0x82, 0x61, 0x92 +.byte 0xe4, 0x94, 0x1b, 0x0a, 0x2a, 0x65, 0xd0, 0xbe, 0x06, 0xa9, 0x87, 0x3b, 0x51, 0x12, 0xea, 0x70 +.byte 0x41, 0xae, 0xe2, 0xfb, 0x74, 0xea, 0x0a, 0x8d, 0xb9, 0xb3, 0x4c, 0xdc, 0x8f, 0xb7, 0x13, 0x52 +.byte 0x4f, 0x54, 0x18, 0xe1, 0x2c, 0x73, 0x95, 0x91, 0xc5, 0x66, 0x3b, 0x6a, 0xcf, 0xac, 0x63, 0x6d +.byte 0x87, 0x53, 0xf0, 0xf7, 0xf1, 0x39, 0xb7, 0xa0, 0x43, 0x63, 0xb0, 0xc4, 0x03, 0x5d, 0x57, 0xa9 +.byte 0xe7, 0x44, 0xce, 0xc4, 0xa1, 0x83, 0x65, 0xf6, 0x50, 0x3e, 0xb1, 0x7e, 0x16, 0xb8, 0x3a, 0x8a +.byte 0x02, 0xd0, 0x96, 0x1f, 0x00, 0xcd, 0x05, 0x21, 0xef, 0x06, 0x6d, 0xdd, 0x21, 0x9c, 0x19, 0x43 +.byte 0x45, 0xa1, 0xc5, 0xe8, 0x80, 0xca, 0xc2, 0xad, 0x40, 0x62, 0x17, 0x06, 0xc6, 0xaa, 0xbc, 0xf3 +.byte 0xd6, 0xe6, 0xfc, 0x50, 0x7e, 0x66, 0x42, 0x1f, 0x3c, 0x8b, 0xa6, 0x79, 0x79, 0x86, 0x40, 0x35 +.byte 0x9f, 0x20, 0xef, 0x3f, 0xeb, 0x8b, 0x47, 0x1f, 0x8f, 0x8e, 0xc5, 0xd4, 0x8e, 0xb6, 0x2c, 0xc9 +.byte 0x44, 0x04, 0xe3, 0xd4, 0x43, 0x75, 0x3f, 0xd5, 0x3f, 0xaf, 0x1c, 0xcc, 0x7e, 0x46, 0x5f, 0xac +.byte 0xdf, 0x64, 0x10, 0x8a, 0xef, 0x46, 0xf0, 0x90, 0xf0, 0x0f, 0x2d, 0xf4, 0x88, 0x0b, 0xb1, 0x29 +.byte 0xaa, 0xaf, 0x85, 0xaa, 0x49, 0x58, 0xa8, 0xbf, 0x63, 0xa0, 0x38, 0x91, 0xe6, 0xb3, 0xe6, 0x77 +.byte 0x68, 0xc4, 0xf9, 0x2a, 0x19, 0x84, 0xbb, 0x0e, 0xe1, 0xf5, 0xaf, 0x89, 0xec, 0xa5, 0x2f, 0x50 +.byte 0x20, 0x74, 0x1e, 0x12, 0x41, 0x73, 0x1e, 0x24, 0xd9, 0xca, 0xce, 0x2c, 0xa1, 0x59, 0x35, 0xc0 +.byte 0xc8, 0x1d, 0x46, 0x27, 0x61, 0x5a, 0x8f, 0xf9, 0x4d, 0xd3, 0x72, 0x79, 0x66, 0x1e, 0x9f, 0x15 +.byte 0x90, 0x21, 0x2d, 0xfd, 0xed, 0x8b, 0x56, 0x70, 0x03, 0x4a, 0x49, 0x3e, 0x7f, 0x69, 0x31, 0x12 +.byte 0x69, 0xc7, 0x1e, 0x5c, 0xca, 0x7a, 0x13, 0x8b, 0xe8, 0xe6, 0xf5, 0x60, 0x0f, 0xcc, 0x93, 0x2c +.byte 0x84, 0x7f, 0xf1, 0xfc, 0x6a, 0xfc, 0x9b, 0x47, 0x9d, 0xdb, 0xad, 0x88, 0x3d, 0xf3, 0x76, 0x75 +.byte 0x33, 0xd7, 0x4b, 0xa4, 0xc8, 0x8b, 0xf9, 0xf5, 0x43, 0x58, 0x4f, 0xcb, 0xc8, 0x03, 0x54, 0x8f +.byte 0xa5, 0x85, 0x78, 0x04, 0x1a, 0xf3, 0x73, 0xf2, 0xd7, 0x87, 0x1d, 0x41, 0x9f, 0xe7, 0xd8, 0x17 +.byte 0xce, 0x1a, 0x9c, 0x0f, 0x4a, 0xfc, 0xdc, 0x44, 0x68, 0x54, 0x68, 0xe2, 0x41, 0x3c, 0xfe, 0x2c +.byte 0x84, 0x86, 0x37, 0x3c, 0xcd, 0x3f, 0x2f, 0xa2, 0xdb, 0xe7, 0xf7, 0x54, 0x03, 0x5f, 0x59, 0xd3 +.byte 0xf7, 0x91, 0x78, 0xc7, 0x8b, 0x77, 0x6a, 0x16, 0xe5, 0x49, 0x85, 0x90, 0x45, 0x72, 0x70, 0x2f +.byte 0x91, 0x5d, 0xf8, 0x3e, 0x65, 0x40, 0x0b, 0x19, 0x99, 0xc9, 0x26, 0x20, 0x5a, 0x68, 0xc1, 0x35 +.byte 0xbf, 0x4f, 0xa7, 0x51, 0xf1, 0xd8, 0x11, 0x2b, 0x5b, 0xe0, 0x9a, 0x9e, 0x28, 0x3b, 0x0a, 0x3a +.byte 0x0a, 0x1f, 0xc1, 0x81, 0xe5, 0x2e, 0xf0, 0xa6, 0xb9, 0x69, 0xa5, 0x88, 0x94, 0xe6, 0x6b, 0x13 +.byte 0x7f, 0xd1, 0x64, 0x3f, 0x3d, 0x9c, 0x70, 0x46, 0xe5, 0xa2, 0x85, 0x7b, 0x58, 0x84, 0x27, 0xdc +.byte 0xc4, 0x80, 0x3e, 0x67, 0x9a, 0x9a, 0xc7, 0x9a, 0x31, 0x0e, 0x30, 0xec, 0xe6, 0x17, 0x40, 0x95 +.byte 0xd9, 0x45, 0xed, 0x01, 0x96, 0xaa, 0xbf, 0x0c, 0xf3, 0x4b, 0xd1, 0x63, 0xf7, 0x13, 0x58, 0xc0 +.byte 0xb8, 0xf3, 0xfa, 0x67, 0xdd, 0x9b, 0x7d, 0x6d, 0x4a, 0xff, 0x32, 0x4c, 0xb5, 0x25, 0x3b, 0xff +.byte 0x1c, 0x67, 0x0f, 0x85, 0x22, 0x59, 0x05, 0x91, 0x91, 0x41, 0x77, 0x81, 0xd0, 0x85, 0x4c, 0x87 +.byte 0x10, 0x71, 0xff, 0x9e, 0x43, 0x1b, 0xae, 0x95, 0x75, 0x2d, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x5c, 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f +.byte 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x34 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1, 0xb3, 0xcd, 0x38, 0xe4, 0x25, 0x43, 0xe5 +.byte 0xde, 0x19, 0x09, 0xbb, 0x81, 0x79, 0xa2, 0x15, 0x5f, 0x15, 0x63, 0x01, 0xde, 0xc2, 0xab, 0xdd +.byte 0xb3, 0xa6, 0x1b, 0x67, 0x4b, 0x80, 0x83, 0xaf, 0x99, 0xcb, 0xac, 0x17, 0xdb, 0x2b, 0x96, 0xca +.byte 0x7c, 0x52, 0x55, 0xe2, 0x1a, 0xe1, 0x3d, 0x56, 0xf0, 0x2f, 0x16, 0x08, 0xfa, 0x15, 0xbc, 0x9b +.byte 0xbb, 0x47, 0xe6, 0x3f, 0xee, 0xa8, 0xe1, 0x4c, 0x8c, 0xf5, 0xd3, 0x36, 0xf9, 0x38, 0x5d, 0xab +.byte 0x70, 0x9a, 0x47, 0x0d, 0xe2, 0x81, 0x41, 0x06, 0xeb, 0x49, 0xf9, 0xb0, 0x29, 0xdd, 0x33, 0xec +.byte 0x50, 0xa5, 0x7f, 0x79, 0x29, 0xb8, 0x20, 0x98, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31 +.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34 +.byte 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30, 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61 +.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, 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1 +.byte 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c, 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c +.byte 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42, 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb +.byte 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9, 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28 +.byte 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e, 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29 +.byte 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9, 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f +.byte 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6, 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3 +.byte 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1, 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0 +.byte 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a, 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23 +.byte 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10, 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31 +.byte 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c, 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac +.byte 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89, 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba +.byte 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64, 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e +.byte 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e, 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a +.byte 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29, 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02 +.byte 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53, 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58 +.byte 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28, 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3 +.byte 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16, 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40 +.byte 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84, 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01 +.byte 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad, 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0 +.byte 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac, 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76 +.byte 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9, 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b +.byte 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99, 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78 +.byte 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1, 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5 +.byte 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce, 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32 +.byte 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4, 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca +.byte 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79, 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d +.byte 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd, 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd +.byte 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9, 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85 +.byte 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6, 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23 +.byte 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86, 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda +.byte 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce, 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd +.byte 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00 +.byte 0x26, 0x01, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49 +.byte 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74 +.byte 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a +.byte 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43 +.byte 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa3 +.byte 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2 +.byte 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d +.byte 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda +.byte 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c +.byte 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc +.byte 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5 +.byte 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52 +.byte 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1 +.byte 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2 +.byte 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02 +.byte 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a +.byte 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc +.byte 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5 +.byte 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec +.byte 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d +.byte 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x43, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xfd, 0xa5, 0x61, 0xae +.byte 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae, 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71 +.byte 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9, 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e +.byte 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf, 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb +.byte 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81, 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a +.byte 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42, 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d +.byte 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe, 0xf5, 0xf2, 0xa9, 0x5f, 0x00, 0x26, 0x02 +.byte 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31 +.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f +.byte 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x33, 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 0xe3, 0xc9, 0x72, 0x49, 0xf7, 0x30, 0xde, 0x09, 0x7c, 0xa9, 0x40, 0x81, 0x58, 0xd3, 0xb4, 0x3a +.byte 0xdd, 0xba, 0x61, 0x0f, 0x93, 0x50, 0x6e, 0x69, 0x3c, 0x35, 0xc2, 0xee, 0x5b, 0x73, 0x90, 0x1b +.byte 0x67, 0x4c, 0x21, 0xec, 0x5f, 0x35, 0xbb, 0x39, 0x3e, 0x2b, 0x0a, 0x60, 0xef, 0xbb, 0x6d, 0x2b +.byte 0x86, 0xfb, 0x71, 0xa2, 0xc8, 0xac, 0xe4, 0x56, 0x94, 0xf9, 0xc9, 0xaf, 0xb1, 0x72, 0xd4, 0x20 +.byte 0xac, 0x74, 0xd2, 0xb8, 0x15, 0xad, 0x51, 0xfe, 0x85, 0x74, 0xa1, 0xb9, 0x10, 0xfe, 0x05, 0x80 +.byte 0xf9, 0x52, 0x93, 0xb3, 0x40, 0x3d, 0x75, 0x10, 0xac, 0xc0, 0x96, 0xb7, 0xa7, 0x7e, 0x76, 0xbc +.byte 0xe3, 0x1b, 0x52, 0x19, 0xce, 0x11, 0x1f, 0x0b, 0x04, 0x34, 0xf5, 0xd8, 0xf5, 0x69, 0x3c, 0x77 +.byte 0xf3, 0x64, 0xf4, 0x0d, 0xaa, 0x85, 0xde, 0xe0, 0x09, 0x50, 0x04, 0x17, 0x96, 0x84, 0xb7, 0xc8 +.byte 0x8a, 0xbc, 0x4d, 0x72, 0xfc, 0x1c, 0xbb, 0xcf, 0xf3, 0x06, 0x4d, 0xf9, 0x9f, 0x64, 0xf7, 0x7e +.byte 0xa6, 0x66, 0x86, 0x35, 0x71, 0xc8, 0x11, 0x80, 0x4c, 0xc1, 0x71, 0x40, 0x58, 0x1e, 0xbe, 0xa0 +.byte 0x73, 0xf6, 0xfc, 0x3e, 0x50, 0xe1, 0xe0, 0x2f, 0x26, 0x3d, 0x7e, 0x5c, 0x23, 0xb5, 0x79, 0x70 +.byte 0xde, 0xfa, 0xe0, 0xd1, 0xa5, 0xd6, 0x0c, 0x41, 0x71, 0x7b, 0xf7, 0xea, 0x8c, 0x1c, 0x88, 0xc7 +.byte 0xec, 0x8b, 0xf5, 0xd1, 0x2f, 0x55, 0x96, 0x46, 0x7c, 0x5a, 0x3b, 0x58, 0x3b, 0xfb, 0xba, 0xd8 +.byte 0x2d, 0xb5, 0x25, 0xda, 0x7a, 0x4e, 0xcf, 0x44, 0xae, 0x21, 0xa6, 0x9e, 0x98, 0xca, 0x20, 0x6e +.byte 0x7c, 0xbb, 0x88, 0x85, 0x5b, 0xfb, 0xc0, 0x10, 0x62, 0xbb, 0xf2, 0xf9, 0x27, 0x47, 0xef, 0xd1 +.byte 0x89, 0x39, 0x43, 0xc4, 0xdf, 0xde, 0xe1, 0x41, 0xbf, 0x54, 0x73, 0x20, 0x97, 0x2d, 0x6c, 0xda +.byte 0xf3, 0xd4, 0x07, 0xa3, 0xe6, 0xb9, 0xd8, 0x6f, 0xae, 0xfc, 0x8c, 0x19, 0x2e, 0xd3, 0x67, 0x67 +.byte 0x2b, 0x95, 0xdb, 0x58, 0x5c, 0xb5, 0x6a, 0x02, 0xf3, 0xb8, 0x83, 0x5e, 0xb4, 0x6b, 0xbe, 0x41 +.byte 0x7e, 0x57, 0x09, 0x75, 0x44, 0x50, 0x55, 0xcd, 0x5a, 0x11, 0x61, 0x21, 0x0a, 0x61, 0xc2, 0xa9 +.byte 0x88, 0xfd, 0x13, 0xbc, 0x2d, 0x89, 0x2f, 0xcd, 0x61, 0xe0, 0x95, 0xbe, 0xca, 0xb5, 0x7b, 0xe1 +.byte 0x7b, 0x34, 0x67, 0x0b, 0x1f, 0xb6, 0x0c, 0xc7, 0x7c, 0x1e, 0x19, 0x53, 0xca, 0xa7, 0xb1, 0x4a +.byte 0x15, 0x20, 0x56, 0x14, 0x70, 0x3d, 0x2b, 0x82, 0x2c, 0x0f, 0x9d, 0x15, 0x1d, 0x47, 0x80, 0x47 +.byte 0xff, 0x78, 0x99, 0x0e, 0x31, 0xaf, 0x6f, 0x3e, 0x8f, 0xed, 0x86, 0x69, 0x1e, 0x7b, 0x18, 0x88 +.byte 0x14, 0xb2, 0xc2, 0xfc, 0x82, 0x33, 0x2e, 0x9c, 0x4b, 0x2d, 0xfb, 0x70, 0x3b, 0x71, 0xaa, 0x2b +.byte 0x7b, 0x26, 0x27, 0xf3, 0x1a, 0xc2, 0xdc, 0xfb, 0x17, 0xb8, 0xa1, 0xea, 0xcb, 0xa0, 0xb4, 0xae +.byte 0xd3, 0x94, 0x7e, 0x7a, 0xd0, 0xab, 0xc3, 0xec, 0x38, 0x2d, 0x11, 0x2e, 0x88, 0xbf, 0xd4, 0x3f +.byte 0xad, 0x12, 0x3b, 0x42, 0xac, 0x8f, 0x02, 0x6e, 0x7d, 0xcc, 0xd1, 0x5f, 0x61, 0xbe, 0xa1, 0xbc +.byte 0x3a, 0x6a, 0x48, 0xea, 0x26, 0x55, 0x22, 0x16, 0x5d, 0x5f, 0x0d, 0xff, 0x27, 0x33, 0x9f, 0x18 +.byte 0x03, 0x74, 0x8a, 0x5b, 0x52, 0x20, 0x47, 0x6b, 0x45, 0x4d, 0x22, 0x77, 0x8c, 0x55, 0x27, 0xf0 +.byte 0xaf, 0x1e, 0x8c, 0xc9, 0x83, 0x22, 0x54, 0xb7, 0x9a, 0xd0, 0x4f, 0xd9, 0xce, 0xfc, 0xd9, 0x2e +.byte 0x1c, 0x96, 0x28, 0xb1, 0x02, 0xd3, 0x03, 0xbd, 0x25, 0x52, 0x1c, 0x34, 0x66, 0x4f, 0x23, 0xab +.byte 0xf4, 0x77, 0x82, 0x96, 0x1d, 0xd1, 0x57, 0x30, 0x08, 0x11, 0x05, 0xfd, 0x57, 0xd1, 0xd9, 0xc7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x5f, 0x00, 0x26, 0x01, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53 +.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 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, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3 +.byte 0xba, 0xc5, 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96 +.byte 0xbc, 0xdb, 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf +.byte 0x97, 0x3d, 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f +.byte 0xbe, 0xf9, 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57 +.byte 0x80, 0xc5, 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1 +.byte 0xd6, 0xd6, 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4 +.byte 0x45, 0x83, 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4 +.byte 0x15, 0xbe, 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a +.byte 0x9a, 0x5d, 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a +.byte 0x06, 0x00, 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5 +.byte 0xbe, 0x53, 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61 +.byte 0x1a, 0xfa, 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8 +.byte 0x70, 0x1f, 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b +.byte 0xcf, 0xde, 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82 +.byte 0x16, 0x3a, 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d +.byte 0x3c, 0x16, 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x60, 0x00 +.byte 0x26, 0x02, 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e +.byte 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e +.byte 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x21, 0x65, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 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, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f +.byte 0x7d, 0x3a, 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37 +.byte 0xea, 0x84, 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03 +.byte 0xf5, 0x60, 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c +.byte 0x15, 0xf2, 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c +.byte 0x6d, 0x22, 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca +.byte 0xd9, 0x12, 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7 +.byte 0x45, 0xef, 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b +.byte 0x60, 0xbc, 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78 +.byte 0xb3, 0x9a, 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51 +.byte 0x70, 0x8a, 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd +.byte 0x97, 0x81, 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13 +.byte 0xd6, 0xb3, 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30 +.byte 0x3f, 0x97, 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9 +.byte 0x1b, 0xe7, 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d +.byte 0xa3, 0x80, 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47 +.byte 0x40, 0x59, 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a +.byte 0xab, 0x69, 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7 +.byte 0xe1, 0xf8, 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75 +.byte 0x07, 0x06, 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7 +.byte 0xbe, 0x4b, 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6 +.byte 0xcf, 0x09, 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7 +.byte 0x1f, 0x22, 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0 +.byte 0xa5, 0x01, 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8 +.byte 0x95, 0x0d, 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f +.byte 0x25, 0x1a, 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a +.byte 0x0a, 0xb3, 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28 +.byte 0xcd, 0x1a, 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b +.byte 0xbb, 0x78, 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90 +.byte 0x75, 0x34, 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8 +.byte 0x25, 0x89, 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84 +.byte 0x35, 0xe2, 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22 +.byte 0x9d, 0x54, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00, 0x78, 0x00, 0x30, 0x5f, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d +.byte 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 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, 0x76, 0xfa, 0x99, 0xa9, 0x6e, 0x20, 0xed, 0xf9, 0xd7, 0x77, 0xe3 +.byte 0x07, 0x3b, 0xa8, 0xdb, 0x3d, 0x5f, 0x38, 0xe8, 0xab, 0x55, 0xa6, 0x56, 0x4f, 0xd6, 0x48, 0xea +.byte 0xec, 0x7f, 0x2d, 0xaa, 0xc3, 0xb2, 0xc5, 0x79, 0xec, 0x99, 0x61, 0x7f, 0x10, 0x79, 0xc7, 0x02 +.byte 0x5a, 0xf9, 0x04, 0x37, 0xf5, 0x34, 0x35, 0x2b, 0x77, 0xce, 0x7f, 0x20, 0x8f, 0x52, 0xa3, 0x00 +.byte 0x89, 0xec, 0xd5, 0xa7, 0xa2, 0x6d, 0x5b, 0xe3, 0x4b, 0x92, 0x93, 0xa0, 0x80, 0xf5, 0x01, 0x94 +.byte 0xdc, 0xf0, 0x68, 0x07, 0x1e, 0xcd, 0xee, 0xfe, 0x25, 0x52, 0xb5, 0x20, 0x43, 0x1c, 0x1b, 0xfe +.byte 0xeb, 0x19, 0xce, 0x43, 0xa3, 0x61, 0x00, 0x26, 0x02, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 +.byte 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65, 0x63 +.byte 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72, 0x76 +.byte 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x93, 0xbe, 0xd5, 0x36, 0x52 +.byte 0x75, 0xd8, 0x01, 0x23, 0xa0, 0x1c, 0x47, 0x42, 0x49, 0xee, 0x63, 0xb6, 0xb7, 0x21, 0xfd, 0xc4 +.byte 0x95, 0xd5, 0x48, 0x2b, 0x26, 0x7c, 0x14, 0x53, 0x10, 0xda, 0x79, 0xfd, 0x2b, 0xb7, 0x2d, 0xa4 +.byte 0xd4, 0x2c, 0xfa, 0xea, 0x32, 0xdd, 0x49, 0xc2, 0xb9, 0xbd, 0x0f, 0x48, 0x3d, 0x7b, 0x5a, 0x98 +.byte 0x54, 0xaf, 0x9e, 0x5d, 0x31, 0x74, 0x4f, 0x07, 0xfc, 0x50, 0x21, 0xdd, 0xa4, 0xcf, 0x68, 0x4f +.byte 0x1b, 0x12, 0x63, 0x6d, 0x25, 0x99, 0x4c, 0x2a, 0x99, 0xf3, 0x48, 0x30, 0x61, 0xfa, 0x81, 0x7c +.byte 0x1e, 0xa7, 0x08, 0x4a, 0xdc, 0x3e, 0x2b, 0x1c, 0x1f, 0x18, 0x4c, 0x71, 0xaa, 0x35, 0x8c, 0xad +.byte 0xf8, 0x6e, 0xe8, 0x3b, 0x4a, 0xd9, 0xe5, 0x94, 0x02, 0xd6, 0x89, 0x84, 0x13, 0xaa, 0x6d, 0xc8 +.byte 0x4f, 0x33, 0xcc, 0x50, 0x96, 0x37, 0x92, 0x33, 0xdc, 0x5f, 0x88, 0xe7, 0x9f, 0x54, 0xd9, 0x48 +.byte 0xf0, 0x98, 0x43, 0xd6, 0x66, 0xfd, 0x9f, 0x17, 0x38, 0x43, 0xc5, 0x01, 0x51, 0x0b, 0xd7, 0xe3 +.byte 0x23, 0x0f, 0x14, 0x5d, 0x5b, 0x14, 0xe7, 0x4b, 0xbe, 0xdd, 0xf4, 0xc8, 0xda, 0x03, 0x37, 0xd1 +.byte 0xd6, 0x39, 0xa1, 0x21, 0x51, 0x30, 0x83, 0xb0, 0x6d, 0xd7, 0x30, 0x4e, 0x96, 0x5b, 0x91, 0xf0 +.byte 0x70, 0x24, 0xab, 0xbf, 0x45, 0x81, 0x64, 0x43, 0x0d, 0xbd, 0x21, 0x3a, 0x2f, 0x3c, 0xe9, 0x9e +.byte 0x0d, 0xcb, 0x20, 0xb5, 0x42, 0x27, 0xcc, 0xda, 0x6f, 0x9b, 0xee, 0x64, 0x30, 0x90, 0x39, 0xcd +.byte 0x93, 0x65, 0x81, 0x21, 0x31, 0xb5, 0x23, 0x50, 0x33, 0x37, 0x22, 0xe3, 0x38, 0xed, 0xf8, 0x31 +.byte 0x30, 0xcc, 0x45, 0xfe, 0x62, 0xf9, 0xd1, 0x5d, 0x32, 0x79, 0x42, 0x87, 0xdf, 0x6a, 0xcc, 0x56 +.byte 0x19, 0x40, 0x4d, 0xce, 0xaa, 0xbb, 0xf9, 0xb5, 0x76, 0x49, 0x94, 0xf1, 0x27, 0xf8, 0x91, 0xa5 +.byte 0x83, 0xe5, 0x06, 0xb3, 0x63, 0x0e, 0x80, 0xdc, 0xe0, 0x12, 0x55, 0x80, 0xa6, 0x3b, 0x66, 0xb4 +.byte 0x39, 0x87, 0x2d, 0xc8, 0xf0, 0xd0, 0xd1, 0x14, 0xe9, 0xe4, 0x0d, 0x4d, 0x0e, 0xf6, 0x5d, 0x57 +.byte 0x72, 0xc5, 0x3b, 0x1c, 0x47, 0x56, 0x9d, 0xe2, 0xd5, 0xfb, 0x81, 0x61, 0x8c, 0xcc, 0x4d, 0x80 +.byte 0x90, 0x34, 0x5b, 0xb7, 0xd7, 0x14, 0x75, 0xdc, 0xd8, 0x04, 0x48, 0x9f, 0xc0, 0xc1, 0x28, 0x88 +.byte 0xb4, 0xe9, 0x1c, 0xca, 0xa7, 0xb1, 0xf1, 0x56, 0xb7, 0x7b, 0x49, 0x4c, 0x59, 0xe5, 0x20, 0x15 +.byte 0xa8, 0x84, 0x02, 0x29, 0xfa, 0x38, 0x94, 0x69, 0x9a, 0x49, 0x06, 0x8f, 0xcd, 0x1f, 0x79, 0x14 +.byte 0x17, 0x12, 0x0c, 0x83, 0x7a, 0xde, 0x1f, 0xb1, 0x97, 0xee, 0xf9, 0x97, 0x78, 0x28, 0xa4, 0xc8 +.byte 0x44, 0x92, 0xe9, 0x7d, 0x26, 0x05, 0xa6, 0x58, 0x72, 0x9b, 0x79, 0x13, 0xd8, 0x11, 0x5f, 0xae +.byte 0xc5, 0x38, 0x62, 0x34, 0x68, 0xb2, 0x86, 0x30, 0x8e, 0xf8, 0x90, 0x61, 0x9e, 0x32, 0x6c, 0xf5 +.byte 0x07, 0x36, 0xcd, 0xa2, 0x4c, 0x6e, 0xec, 0x8a, 0x36, 0xed, 0xf2, 0xe6, 0x99, 0x15, 0x44, 0x70 +.byte 0xc3, 0x7c, 0xbc, 0x9c, 0x39, 0xc0, 0xb4, 0xe1, 0x6b, 0xf7, 0x83, 0x25, 0x23, 0x57, 0xd9, 0x12 +.byte 0x80, 0xe5, 0x49, 0xf0, 0x75, 0x0f, 0xef, 0x8d, 0xeb, 0x1c, 0x9b, 0x54, 0x28, 0xb4, 0x21, 0x3c +.byte 0xfc, 0x7c, 0x0a, 0xff, 0xef, 0x7b, 0x6b, 0x75, 0xff, 0x8b, 0x1d, 0xa0, 0x19, 0x05, 0xab, 0xfa +.byte 0xf8, 0x2b, 0x81, 0x42, 0xe8, 0x38, 0xba, 0xbb, 0xfb, 0xaa, 0xfd, 0x3d, 0xe0, 0xf3, 0xca, 0xdf +.byte 0x4e, 0x97, 0x97, 0x29, 0xed, 0xf3, 0x18, 0x56, 0xe9, 0xa5, 0x96, 0xac, 0xbd, 0xc3, 0x90, 0x98 +.byte 0xb2, 0xe0, 0xf9, 0xa2, 0xd4, 0xa6, 0x47, 0x43, 0x7c, 0x6d, 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x61, 0x00, 0x26, 0x01, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41 +.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde +.byte 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10 +.byte 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53 +.byte 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22 +.byte 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10 +.byte 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80 +.byte 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63 +.byte 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56 +.byte 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30 +.byte 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45 +.byte 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a +.byte 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf +.byte 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a +.byte 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7 +.byte 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f +.byte 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58 +.byte 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30 +.byte 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e +.byte 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 +.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43 +.byte 0x41, 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, 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03 +.byte 0xc3, 0xbd, 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75, 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e +.byte 0xd7, 0x63, 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c, 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90 +.byte 0x12, 0xc8, 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f, 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9 +.byte 0xef, 0x6d, 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc, 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2 +.byte 0xc6, 0xf9, 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2, 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12 +.byte 0x47, 0x6d, 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1, 0x63, 0x00, 0x26, 0x02, 0x30, 0x61 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30 +.byte 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72 +.byte 0x6f, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x10, 0x54, 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 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, 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e +.byte 0x05, 0x4b, 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda +.byte 0xf6, 0x06, 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06 +.byte 0xd4, 0xec, 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a +.byte 0xb2, 0x6c, 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5 +.byte 0x30, 0xc4, 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c +.byte 0x39, 0xad, 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd +.byte 0x29, 0x67, 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43 +.byte 0xda, 0x7e, 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11 +.byte 0xbb, 0x35, 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc +.byte 0x4e, 0xa0, 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca +.byte 0xa3, 0x65, 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a +.byte 0x2c, 0x47, 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00 +.byte 0x58, 0x97, 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10 +.byte 0x84, 0xc3, 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92, 0x94, 0x60 +.byte 0x5c, 0xc7, 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83 +.byte 0xad, 0x58, 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07 +.byte 0xdb, 0x60, 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2 +.byte 0x5b, 0x23, 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8 +.byte 0x66, 0xbf, 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2 +.byte 0x8f, 0x0c, 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd +.byte 0x3a, 0x24, 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1 +.byte 0x56, 0x3f, 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b +.byte 0xf6, 0x5d, 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d +.byte 0x3f, 0xad, 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8 +.byte 0x58, 0x41, 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d +.byte 0x58, 0xa7, 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c +.byte 0x54, 0xe6, 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2 +.byte 0x80, 0xb9, 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28 +.byte 0x42, 0x01, 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1 +.byte 0xec, 0x2c, 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43 +.byte 0x5d, 0x27, 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3 +.byte 0x00, 0x97, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 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, 0x43, 0x41, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe2 +.byte 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77 +.byte 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7 +.byte 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87 +.byte 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2 +.byte 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7 +.byte 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc +.byte 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e +.byte 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf +.byte 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2 +.byte 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4 +.byte 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0 +.byte 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd +.byte 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42 +.byte 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f +.byte 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c +.byte 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 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, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 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, 0xbb, 0x37, 0xcd, 0x34 +.byte 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08 +.byte 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a +.byte 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a +.byte 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a +.byte 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83 +.byte 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9 +.byte 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff +.byte 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4 +.byte 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04 +.byte 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4 +.byte 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9 +.byte 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd +.byte 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1 +.byte 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73 +.byte 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c +.byte 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 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, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 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 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73 +.byte 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc +.byte 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17 +.byte 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad +.byte 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae +.byte 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e +.byte 0x64, 0x00, 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55 +.byte 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49 +.byte 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x20, 0x43 +.byte 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55, 0x54, 0x48 +.byte 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd9, 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74 +.byte 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12 +.byte 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c +.byte 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9 +.byte 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f +.byte 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd +.byte 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f +.byte 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2 +.byte 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec +.byte 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72 +.byte 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08 +.byte 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44 +.byte 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17 +.byte 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66 +.byte 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5 +.byte 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23 +.byte 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2 +.byte 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07 +.byte 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4 +.byte 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3 +.byte 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5 +.byte 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b +.byte 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf +.byte 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53 +.byte 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec +.byte 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92 +.byte 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1 +.byte 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1 +.byte 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f +.byte 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0 +.byte 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d +.byte 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21 +.byte 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01, 0x64, 0x00 +.byte 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 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, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d +.byte 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2 +.byte 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b +.byte 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d +.byte 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f +.byte 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93 +.byte 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf +.byte 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5 +.byte 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b +.byte 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40 +.byte 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e +.byte 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f +.byte 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91 +.byte 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10 +.byte 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab +.byte 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4 +.byte 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf +.byte 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f +.byte 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76 +.byte 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2 +.byte 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef +.byte 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b +.byte 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc +.byte 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c +.byte 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80 +.byte 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18 +.byte 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c +.byte 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f +.byte 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca +.byte 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51 +.byte 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e +.byte 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d +.byte 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x78, 0x00 +.byte 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63 +.byte 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xce, 0xbf, 0xfe +.byte 0x57, 0xa8, 0xbf, 0xd5, 0xaa, 0xf7, 0x10, 0x9a, 0xcd, 0xbc, 0xd1, 0x11, 0xa2, 0xbd, 0x67, 0x42 +.byte 0xcc, 0x90, 0xeb, 0x15, 0x18, 0x90, 0xd9, 0xa2, 0xcd, 0x0c, 0x2a, 0x25, 0xeb, 0x3e, 0x4f, 0xce +.byte 0xb5, 0xd2, 0x8f, 0x0f, 0xf3, 0x35, 0xda, 0x43, 0x8b, 0x02, 0x80, 0xbe, 0x6f, 0x51, 0x24, 0x1d +.byte 0x0f, 0x6b, 0x2b, 0xca, 0x9f, 0xc2, 0x6f, 0x50, 0x32, 0xe5, 0x37, 0x20, 0xb6, 0x20, 0xff, 0x88 +.byte 0x0d, 0x0f, 0x6d, 0x49, 0xbb, 0xdb, 0x06, 0xa4, 0x87, 0x90, 0x92, 0x94, 0xf4, 0x09, 0xd0, 0xcf +.byte 0x7f, 0xc8, 0x80, 0x0b, 0xc1, 0x97, 0xb3, 0xbb, 0x35, 0x27, 0xc9, 0xc2, 0x1b, 0x65, 0x00, 0x26 +.byte 0x02, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45 +.byte 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73 +.byte 0x63, 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xed, 0x35, 0xa1, 0x81, 0x80, 0xf3, 0xcb, 0x4a, 0x69 +.byte 0x5b, 0xc2, 0xfb, 0x51, 0x83, 0xae, 0x26, 0xfd, 0xe1, 0x6e, 0xf3, 0x81, 0x12, 0x7d, 0x71, 0x40 +.byte 0xff, 0x87, 0x75, 0x42, 0x29, 0x21, 0xed, 0x81, 0x52, 0x2c, 0xdf, 0x12, 0xc1, 0x19, 0x84, 0x89 +.byte 0xc1, 0xbd, 0xc5, 0x28, 0xd5, 0xd5, 0x4b, 0x6c, 0x44, 0xd6, 0x4c, 0xdb, 0x07, 0x96, 0x4a, 0x55 +.byte 0x7a, 0xca, 0x36, 0x82, 0x04, 0x36, 0xa8, 0xa5, 0xfc, 0x27, 0xf6, 0x49, 0xf1, 0xd5, 0x72, 0x9e +.byte 0x91, 0xf9, 0x23, 0xd6, 0x70, 0x7b, 0xbb, 0xf5, 0x9b, 0xc1, 0xec, 0x93, 0xcf, 0x19, 0xea, 0x65 +.byte 0x7e, 0x88, 0x70, 0xa0, 0x73, 0xfc, 0xf6, 0xff, 0xb5, 0x56, 0x62, 0xe1, 0x73, 0x6a, 0x34, 0x98 +.byte 0x3e, 0x82, 0xb8, 0xac, 0x95, 0x53, 0xf4, 0x01, 0xa0, 0x27, 0x07, 0x72, 0xa3, 0x00, 0x53, 0xa0 +.byte 0xe4, 0xb2, 0xab, 0x83, 0x38, 0x57, 0x33, 0x25, 0x94, 0x9f, 0xbe, 0x48, 0x1d, 0x98, 0xe1, 0xa3 +.byte 0xba, 0x9e, 0x5c, 0xcd, 0x04, 0x71, 0x51, 0x7d, 0x75, 0x78, 0xab, 0xf3, 0x59, 0xaa, 0xc4, 0xe0 +.byte 0x60, 0xbe, 0x8f, 0x83, 0x52, 0xb8, 0x75, 0x1a, 0x41, 0x35, 0xed, 0xbc, 0xf3, 0x3a, 0x63, 0xe9 +.byte 0xa9, 0x14, 0x45, 0xd7, 0xe6, 0x52, 0xd1, 0x6e, 0xd2, 0xde, 0xbc, 0xe3, 0xf5, 0x0b, 0x3b, 0xe6 +.byte 0xe0, 0xc4, 0xbd, 0x43, 0x64, 0x13, 0xa6, 0xce, 0xf4, 0x98, 0x37, 0x6c, 0x8a, 0x95, 0xa8, 0x97 +.byte 0xc8, 0x47, 0x0f, 0xf0, 0x5e, 0x10, 0x8b, 0xe7, 0x1d, 0x1c, 0xfe, 0xb1, 0x3b, 0xa0, 0x05, 0x33 +.byte 0x68, 0x05, 0x41, 0x82, 0xc1, 0x03, 0x2b, 0x01, 0xc8, 0xe7, 0x8f, 0x4d, 0xab, 0xe8, 0xb5, 0xf6 +.byte 0xcd, 0x6b, 0x44, 0xb5, 0xe7, 0xdd, 0x8b, 0xec, 0xea, 0x25, 0xb4, 0x00, 0x22, 0x57, 0x4d, 0xb0 +.byte 0xb1, 0xb2, 0x31, 0xc1, 0x16, 0xce, 0xff, 0xfd, 0x14, 0x84, 0xb7, 0x47, 0xfa, 0xb2, 0xf1, 0x70 +.byte 0xde, 0xdb, 0x8b, 0x6c, 0x36, 0x58, 0xa4, 0x7c, 0xb3, 0x11, 0xd1, 0xc3, 0x77, 0x7f, 0x5f, 0xb6 +.byte 0x25, 0xe0, 0x0d, 0xc5, 0xd2, 0xb3, 0xf9, 0xb8, 0xb8, 0x77, 0xdb, 0x37, 0x71, 0x71, 0x47, 0xe3 +.byte 0x60, 0x18, 0x4f, 0x24, 0xb6, 0x75, 0x37, 0x78, 0xb9, 0xa3, 0x62, 0xaf, 0xbd, 0xc9, 0x72, 0x8e +.byte 0x2f, 0xcc, 0xbb, 0xae, 0xdb, 0xe4, 0x15, 0x52, 0x19, 0x07, 0x33, 0xfb, 0x6a, 0xb7, 0x2d, 0x4b +.byte 0x90, 0x28, 0x82, 0x73, 0xfe, 0x18, 0x8b, 0x35, 0x8d, 0xdb, 0xa7, 0x04, 0x6a, 0xbe, 0xea, 0xc1 +.byte 0x4d, 0x36, 0x3b, 0x16, 0x36, 0x91, 0x32, 0xef, 0xb6, 0x40, 0x89, 0x91, 0x43, 0xe0, 0xf2, 0xa2 +.byte 0xab, 0x04, 0x2e, 0xe6, 0xf2, 0x4c, 0x0e, 0x16, 0x34, 0x20, 0xac, 0x87, 0xc1, 0x2d, 0x7e, 0xc9 +.byte 0x66, 0x47, 0x17, 0x14, 0x11, 0xa4, 0xf3, 0xf7, 0xa1, 0x24, 0x89, 0xab, 0xd8, 0x1a, 0xc8, 0xa1 +.byte 0x5c, 0xb1, 0xa3, 0xf7, 0x8c, 0x6d, 0xc8, 0x01, 0xc9, 0x4f, 0xc9, 0xec, 0xc4, 0xfc, 0xac, 0x51 +.byte 0x33, 0xd1, 0xc8, 0x83, 0xd1, 0xc9, 0x9f, 0x1d, 0xd4, 0x47, 0x34, 0x29, 0x3e, 0xcb, 0xb0, 0x0e +.byte 0xfa, 0x83, 0x0b, 0x28, 0x58, 0xe5, 0x29, 0xdc, 0x3f, 0x7c, 0xa8, 0x9f, 0xc9, 0xb6, 0x0a, 0xbb +.byte 0xa6, 0xe8, 0x46, 0x16, 0x0f, 0x96, 0xe5, 0x7b, 0xe4, 0x6a, 0x7a, 0x48, 0x6d, 0x76, 0x98, 0x05 +.byte 0xa5, 0xdc, 0x6d, 0x1e, 0x42, 0x1e, 0x42, 0xda, 0x1a, 0xe0, 0x52, 0xf7, 0xb5, 0x83, 0xc0, 0x1a +.byte 0x7b, 0x78, 0x35, 0x2c, 0x38, 0xf5, 0x1f, 0xfd, 0x49, 0xa3, 0x2e, 0xd2, 0x59, 0x63, 0xbf, 0x80 +.byte 0xb0, 0x8c, 0x93, 0x73, 0xcb, 0x35, 0xa6, 0x99, 0x95, 0x22, 0x61, 0x65, 0x03, 0x60, 0xfb, 0x2f +.byte 0x93, 0x4b, 0xfa, 0x9a, 0x9c, 0x80, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x24, 0x01 +.byte 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f +.byte 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20 +.byte 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01 +.byte 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb +.byte 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3 +.byte 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63 +.byte 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81 +.byte 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20 +.byte 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27 +.byte 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72 +.byte 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0 +.byte 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d +.byte 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04 +.byte 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f +.byte 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03 +.byte 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe +.byte 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07 +.byte 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba +.byte 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f +.byte 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77 +.byte 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 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, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3 +.byte 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20 +.byte 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1 +.byte 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7 +.byte 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c +.byte 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1 +.byte 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1 +.byte 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f +.byte 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16 +.byte 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda +.byte 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a +.byte 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13 +.byte 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17 +.byte 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1 +.byte 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2 +.byte 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb +.byte 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65 +.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 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x47, 0x32, 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, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88 +.byte 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf +.byte 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa +.byte 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00 +.byte 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd +.byte 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf +.byte 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52 +.byte 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b +.byte 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74 +.byte 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29 +.byte 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3 +.byte 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe +.byte 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1 +.byte 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02, 0x77, 0x44 +.byte 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87 +.byte 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa +.byte 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x78, 0x00, 0x30 +.byte 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10 +.byte 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x19, 0xe7 +.byte 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d +.byte 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f +.byte 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9 +.byte 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6 +.byte 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f +.byte 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39, 0x67, 0x00 +.byte 0x78, 0x00, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0xd4, 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51 +.byte 0x2f, 0x6a, 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51 +.byte 0xa2, 0x03, 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79 +.byte 0xa6, 0x2f, 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63, 0x04, 0x66, 0x99 +.byte 0xf8, 0xfa, 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b +.byte 0x84, 0x60, 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78 +.byte 0xc0, 0x67, 0x00, 0x26, 0x02, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 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, 0xca, 0x5b, 0xbe +.byte 0x94, 0x33, 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99 +.byte 0x36, 0xdf, 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67 +.byte 0x50, 0x33, 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c +.byte 0x48, 0x40, 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4 +.byte 0x65, 0xd0, 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b +.byte 0x43, 0x1d, 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9 +.byte 0x6c, 0xb3, 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5 +.byte 0x1c, 0xb5, 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae +.byte 0x60, 0xa4, 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2 +.byte 0xde, 0x4b, 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66 +.byte 0x80, 0x64, 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78 +.byte 0x33, 0x5b, 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82 +.byte 0x3e, 0x76, 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9 +.byte 0x8c, 0x49, 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe +.byte 0x78, 0xa8, 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89 +.byte 0xad, 0xba, 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c +.byte 0x68, 0x30, 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85 +.byte 0x3b, 0x3e, 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2 +.byte 0x5e, 0x44, 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86 +.byte 0x61, 0xa4, 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13 +.byte 0x2b, 0x8f, 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1 +.byte 0x48, 0x27, 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba +.byte 0x5b, 0xa2, 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22 +.byte 0x98, 0xf4, 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac +.byte 0xfc, 0x38, 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a +.byte 0x50, 0x6b, 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae +.byte 0x57, 0x22, 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e +.byte 0x0e, 0xd3, 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07 +.byte 0xf8, 0x52, 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2 +.byte 0x81, 0xe1, 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54 +.byte 0xd4, 0x14, 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90 +.byte 0x5b, 0x98, 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x69, 0x00, 0x26, 0x01, 0x30, 0x67, 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, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 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 0x93, 0x4b, 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3 +.byte 0xe7, 0x9e, 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b +.byte 0x20, 0xc6, 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3 +.byte 0x76, 0xbd, 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29 +.byte 0xdd, 0x16, 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a +.byte 0xfe, 0x3c, 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b +.byte 0xaa, 0xcd, 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32 +.byte 0x16, 0xd3, 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b +.byte 0xd9, 0x4e, 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3 +.byte 0xfa, 0xa2, 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62 +.byte 0xe2, 0xab, 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68 +.byte 0x85, 0x6d, 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96 +.byte 0xd1, 0x13, 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40 +.byte 0x1c, 0x3e, 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2 +.byte 0x86, 0x60, 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79 +.byte 0x4e, 0x34, 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 +.byte 0x65, 0x6c, 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11 +.byte 0x64, 0xdf, 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f +.byte 0xf0, 0xc3, 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0 +.byte 0x9e, 0xe8, 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0 +.byte 0xc8, 0xaf, 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d +.byte 0xfa, 0x5a, 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25 +.byte 0x14, 0x54, 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a +.byte 0xff, 0xad, 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34 +.byte 0x5f, 0xdb, 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a +.byte 0x3e, 0x10, 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51 +.byte 0x3c, 0x30, 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a +.byte 0x2b, 0x85, 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8 +.byte 0x36, 0x3d, 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64 +.byte 0x8d, 0x17, 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0 +.byte 0xd5, 0x6e, 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea +.byte 0x3e, 0xbb, 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2 +.byte 0x44, 0xa0, 0x01, 0xab, 0x02, 0x01, 0x03, 0x6b, 0x00, 0x26, 0x02, 0x30, 0x69, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e +.byte 0x45, 0x53, 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72 +.byte 0x70, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56 +.byte 0x45, 0x52, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 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, 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, 0xb6, 0xd4, 0xf1, 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a +.byte 0xab, 0x0d, 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65 +.byte 0x5a, 0x29, 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a +.byte 0x31, 0x65, 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7 +.byte 0x6a, 0xe9, 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91 +.byte 0xb1, 0xca, 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02 +.byte 0xe5, 0xda, 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84 +.byte 0x93, 0x18, 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9 +.byte 0x02, 0x1d, 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54 +.byte 0xf7, 0x34, 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a +.byte 0xdd, 0xfe, 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9 +.byte 0x66, 0xd3, 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69 +.byte 0xa7, 0x29, 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b +.byte 0x92, 0x8d, 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69 +.byte 0xed, 0x6f, 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc +.byte 0x44, 0xaa, 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f +.byte 0x0c, 0x0b, 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03 +.byte 0xa0, 0xa0, 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9 +.byte 0xf1, 0x6d, 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d +.byte 0xf3, 0x54, 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2 +.byte 0xd5, 0x09, 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c +.byte 0x53, 0x70, 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e +.byte 0x5f, 0x1b, 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f +.byte 0xa9, 0xb0, 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce +.byte 0xbf, 0x5d, 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb +.byte 0x3e, 0x9c, 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17 +.byte 0x61, 0x96, 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5 +.byte 0x5b, 0x3e, 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90 +.byte 0x62, 0xb4, 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9 +.byte 0x5e, 0x04, 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80 +.byte 0x6b, 0xed, 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01 +.byte 0xc9, 0xb8, 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9 +.byte 0x74, 0x84, 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6d, 0x00, 0x78, 0x00 +.byte 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31 +.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65 +.byte 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67 +.byte 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33, 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, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2 +.byte 0xdd, 0xe2, 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74 +.byte 0xec, 0xbb, 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14 +.byte 0xa8, 0x4a, 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06 +.byte 0xd0, 0x86, 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6 +.byte 0xa5, 0x63, 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82 +.byte 0x64, 0x7d, 0x16, 0x93, 0xd1, 0x6d, 0x00, 0x26, 0x02, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41 +.byte 0x2e, 0x2f, 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5 +.byte 0x18, 0xc5, 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a +.byte 0xc2, 0x1c, 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08 +.byte 0x83, 0xd5, 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16 +.byte 0xd5, 0x5f, 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a +.byte 0x69, 0x4d, 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58 +.byte 0xee, 0xdc, 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d +.byte 0xf5, 0x41, 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e +.byte 0x86, 0x54, 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0 +.byte 0x7d, 0x13, 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b +.byte 0x3a, 0xbd, 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07 +.byte 0x37, 0x08, 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd +.byte 0x2a, 0xed, 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3 +.byte 0x3d, 0xd0, 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30 +.byte 0x26, 0xfc, 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f +.byte 0x99, 0xd3, 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6 +.byte 0xa3, 0x18, 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21 +.byte 0xc5, 0xe3, 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9 +.byte 0xdd, 0xc4, 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b +.byte 0x2e, 0xb6, 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7 +.byte 0x4a, 0x97, 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c +.byte 0xff, 0x18, 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14 +.byte 0x4f, 0x59, 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b +.byte 0x6f, 0xfb, 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a +.byte 0x8f, 0x4a, 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35 +.byte 0x7c, 0x4c, 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7 +.byte 0x17, 0x06, 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d +.byte 0x6d, 0xe0, 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f +.byte 0xe6, 0xdf, 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58 +.byte 0xf0, 0x12, 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b +.byte 0xb2, 0xfe, 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3 +.byte 0x56, 0x8d, 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b +.byte 0xd9, 0xb2, 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x78, 0x00 +.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, 0x45, 0x43 +.byte 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 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, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf +.byte 0x49, 0x3a, 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88 +.byte 0x84, 0xfc, 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55 +.byte 0x87, 0xfc, 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9 +.byte 0xf2, 0x96, 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75 +.byte 0xd3, 0x72, 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58 +.byte 0x90, 0x15, 0x72, 0xa7, 0xa1, 0xb7, 0x6e, 0x00, 0x26, 0x02, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61 +.byte 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20 +.byte 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52 +.byte 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 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, 0x8b, 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05 +.byte 0x67, 0x96, 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84 +.byte 0x7f, 0x77, 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25 +.byte 0x09, 0x97, 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51 +.byte 0x82, 0xff, 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b +.byte 0x4c, 0xbf, 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98 +.byte 0xe2, 0x23, 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda +.byte 0x1f, 0xd3, 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0 +.byte 0xd6, 0x69, 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa +.byte 0xe3, 0xa4, 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3 +.byte 0x9f, 0xae, 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5 +.byte 0x30, 0x94, 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4 +.byte 0x5a, 0xd9, 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f +.byte 0x8e, 0x0b, 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99 +.byte 0xca, 0x88, 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70 +.byte 0xc0, 0x5a, 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e +.byte 0xd1, 0xf2, 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22 +.byte 0x38, 0x80, 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f +.byte 0x35, 0xab, 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5 +.byte 0x11, 0xd1, 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba +.byte 0xb3, 0x50, 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70 +.byte 0xa3, 0x09, 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea, 0x81, 0x00, 0x63 +.byte 0x14, 0xb9, 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4 +.byte 0xa7, 0x02, 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0 +.byte 0xde, 0x3c, 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad +.byte 0x77, 0x4c, 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f +.byte 0x20, 0x8a, 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a +.byte 0x83, 0x50, 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68 +.byte 0xe3, 0x26, 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a +.byte 0x72, 0x61, 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe +.byte 0xb3, 0x50, 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84 +.byte 0x5e, 0x68, 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27 +.byte 0x65, 0x2e, 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00 +.byte 0x26, 0x01, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75 +.byte 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.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, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5 +.byte 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a +.byte 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41 +.byte 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82 +.byte 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab +.byte 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92 +.byte 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e +.byte 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b +.byte 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13 +.byte 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79 +.byte 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd +.byte 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c +.byte 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12 +.byte 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca +.byte 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e +.byte 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b +.byte 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x26, 0x01, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e +.byte 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31 +.byte 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20 +.byte 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x42, 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, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24 +.byte 0x2a, 0xd6, 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98 +.byte 0x4e, 0x27, 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31 +.byte 0xbb, 0xa8, 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79 +.byte 0xd6, 0x32, 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87 +.byte 0x4a, 0x0b, 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf +.byte 0x9e, 0x15, 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50 +.byte 0xff, 0xba, 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1 +.byte 0x6b, 0x6e, 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23 +.byte 0xfc, 0xc9, 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42 +.byte 0x8e, 0x69, 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7 +.byte 0xd4, 0xa8, 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77 +.byte 0x3f, 0x9d, 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a +.byte 0x16, 0x0d, 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29 +.byte 0xda, 0x8e, 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b +.byte 0xc8, 0x8b, 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58 +.byte 0x93, 0xad, 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f +.byte 0x00, 0x78, 0x00, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53 +.byte 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f +.byte 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20 +.byte 0x43, 0x41, 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, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f +.byte 0x72, 0x18, 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54 +.byte 0x24, 0xdb, 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82 +.byte 0x81, 0x0d, 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d +.byte 0xf1, 0xdb, 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1 +.byte 0x87, 0x78, 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13 +.byte 0x4d, 0xa4, 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x70, 0x00, 0x78, 0x00, 0x30, 0x6e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x13, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f +.byte 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x41, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x41, 0x36, 0x32, 0x36 +.byte 0x33, 0x34, 0x30, 0x36, 0x38, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e +.byte 0x46, 0x49, 0x52, 0x4d, 0x41, 0x50, 0x52, 0x4f, 0x46, 0x45, 0x53, 0x49, 0x4f, 0x4e, 0x41, 0x4c +.byte 0x20, 0x43, 0x41, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x2d, 0x41, 0x20, 0x57, 0x45, 0x42, 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, 0x47, 0x53, 0xea, 0x2c, 0x11, 0xa4, 0x77, 0xc7, 0x2a, 0xea +.byte 0xf3, 0xd6, 0x5f, 0x7b, 0xd3, 0x04, 0x91, 0x5c, 0xfa, 0x88, 0xc6, 0x22, 0xb9, 0x83, 0x10, 0x62 +.byte 0x77, 0x84, 0x33, 0x2d, 0xe9, 0x03, 0x88, 0xd4, 0xe0, 0x33, 0xf7, 0xed, 0x77, 0x2c, 0x4a, 0x60 +.byte 0xea, 0xe4, 0x6f, 0xad, 0x6d, 0xb4, 0xf8, 0x4c, 0x8a, 0xa4, 0xe4, 0x1f, 0xca, 0xea, 0x4f, 0x38 +.byte 0x4a, 0x2e, 0x82, 0x73, 0x2b, 0xc7, 0x66, 0x9b, 0x0a, 0x8c, 0x40, 0x9c, 0x7c, 0x8a, 0xf6, 0xf2 +.byte 0x39, 0x60, 0xb2, 0xde, 0xcb, 0xec, 0xb8, 0xe4, 0x6f, 0xea, 0x9b, 0x5d, 0xb7, 0x53, 0x90, 0x18 +.byte 0x32, 0x55, 0xc5, 0x20, 0xb7, 0x94, 0x71, 0x00, 0x26, 0x02, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55 +.byte 0x04, 0x08, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e +.byte 0x67, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67 +.byte 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73 +.byte 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0x88, 0xd7, 0xea +.byte 0xce, 0x0f, 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29 +.byte 0x68, 0xa1, 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c +.byte 0xb9, 0xd4, 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99 +.byte 0xe4, 0xcc, 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5 +.byte 0x3e, 0x13, 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58 +.byte 0xa2, 0x13, 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c +.byte 0x57, 0x88, 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6 +.byte 0x54, 0x89, 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29 +.byte 0xbb, 0xd5, 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8 +.byte 0x8a, 0x2f, 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5 +.byte 0x53, 0xcb, 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b +.byte 0x1e, 0xda, 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70 +.byte 0xd5, 0x50, 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1 +.byte 0xbc, 0x5e, 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12 +.byte 0xe3, 0xd2, 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c +.byte 0x64, 0x9c, 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69 +.byte 0x01, 0x42, 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6 +.byte 0x50, 0x41, 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29 +.byte 0x4a, 0x6b, 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0 +.byte 0xd6, 0x2d, 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b +.byte 0xff, 0x72, 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20 +.byte 0x61, 0x3d, 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08 +.byte 0x59, 0x3c, 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7 +.byte 0xbc, 0x95, 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d +.byte 0x2a, 0x39, 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0 +.byte 0xe2, 0xe0, 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7 +.byte 0xef, 0xed, 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47 +.byte 0x85, 0x2d, 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37 +.byte 0xe6, 0x48, 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52 +.byte 0xaf, 0x42, 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15 +.byte 0xb5, 0x3f, 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe +.byte 0x97, 0x8d, 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x73, 0x00, 0x5b, 0x00, 0x30, 0x71, 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 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d +.byte 0x32, 0x33, 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03 +.byte 0x42, 0x00, 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90 +.byte 0xb1, 0xb3, 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2 +.byte 0xc6, 0x5e, 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a +.byte 0x90, 0xa6, 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe +.byte 0x7c, 0x7a, 0xda, 0x76, 0x00, 0x78, 0x00, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72 +.byte 0x74, 0x75, 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 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, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37 +.byte 0x63, 0xe4, 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29 +.byte 0x9f, 0xa1, 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e +.byte 0x57, 0x60, 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c +.byte 0xc2, 0x11, 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27 +.byte 0x89, 0x55, 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c +.byte 0xb7, 0x53, 0xad, 0xeb, 0xc2, 0x7a, 0x00, 0x78, 0x00, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32 +.byte 0x36, 0x30, 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23 +.byte 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d +.byte 0x20, 0x53, 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55 +.byte 0x52, 0x4f, 0x53, 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, 0xf6, 0xba, 0x57, 0x53, 0xc8 +.byte 0xca, 0xab, 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51 +.byte 0xd0, 0x5e, 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17 +.byte 0x69, 0xdb, 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1 +.byte 0x34, 0xf9, 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd +.byte 0xd7, 0xc5, 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2 +.byte 0xa2, 0x43, 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x7c, 0x00, 0x26, 0x02, 0x30 +.byte 0x7a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21 +.byte 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20 +.byte 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41 +.byte 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74 +.byte 0x75, 0x6d, 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, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd1, 0x2d, 0x8e, 0xbb +.byte 0xb7, 0x36, 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce +.byte 0x1c, 0x82, 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c +.byte 0xc1, 0x7c, 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18 +.byte 0xa3, 0xd8, 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02 +.byte 0x8c, 0xcf, 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3 +.byte 0xd3, 0xb2, 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00 +.byte 0x53, 0x9f, 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5 +.byte 0x3e, 0x08, 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae +.byte 0xbc, 0xc1, 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0 +.byte 0x90, 0x8d, 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d +.byte 0x3d, 0x3a, 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3 +.byte 0xcc, 0x32, 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65 +.byte 0x95, 0x67, 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83 +.byte 0xf0, 0x4a, 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46 +.byte 0x9a, 0x90, 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3 +.byte 0xbe, 0xa9, 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30 +.byte 0x4c, 0x79, 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20 +.byte 0x88, 0xf7, 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5 +.byte 0x53, 0x3e, 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3 +.byte 0x4f, 0x4e, 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34 +.byte 0x24, 0x7d, 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d +.byte 0xb4, 0x0d, 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76 +.byte 0xfe, 0x72, 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90 +.byte 0x4f, 0x0b, 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c +.byte 0xf6, 0xe1, 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3 +.byte 0xe3, 0x59, 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb +.byte 0xbc, 0x57, 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d +.byte 0x4c, 0xc4, 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c +.byte 0xbe, 0x30, 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24 +.byte 0x03, 0xe0, 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b +.byte 0x5c, 0x08, 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb +.byte 0xc4, 0xb5, 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x7d, 0x00, 0x26, 0x01, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47 +.byte 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65 +.byte 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66 +.byte 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f +.byte 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63 +.byte 0x65, 0x73, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44 +.byte 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa +.byte 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49 +.byte 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc +.byte 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60 +.byte 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c +.byte 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35 +.byte 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76 +.byte 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13 +.byte 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5 +.byte 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05 +.byte 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d +.byte 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99 +.byte 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9 +.byte 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd +.byte 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e +.byte 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7e, 0x00, 0x78, 0x00, 0x30, 0x7c, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 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, 0x45, 0x43, 0x43, 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, 0x45, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb +.byte 0x96, 0x22, 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e +.byte 0x49, 0xb9, 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8 +.byte 0x27, 0xeb, 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52 +.byte 0x63, 0x41, 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6 +.byte 0x06, 0x7f, 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3 +.byte 0x47, 0xd3, 0x7e, 0x00, 0x26, 0x02, 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, 0x52, 0x53, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec +.byte 0x67, 0x85, 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a +.byte 0x5d, 0x91, 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f +.byte 0xc2, 0x16, 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2 +.byte 0x16, 0xfd, 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f +.byte 0x46, 0x97, 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e +.byte 0xfc, 0x6c, 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03 +.byte 0x14, 0x1d, 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e +.byte 0x67, 0x02, 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7 +.byte 0x6f, 0xa1, 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22 +.byte 0xc7, 0xf8, 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a +.byte 0x04, 0x37, 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a +.byte 0x68, 0xc7, 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9 +.byte 0x1d, 0xd9, 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8 +.byte 0x5b, 0xe1, 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11 +.byte 0xc3, 0x38, 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02 +.byte 0x4f, 0x28, 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc +.byte 0xba, 0xc5, 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22 +.byte 0xca, 0x3a, 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd +.byte 0xaf, 0x03, 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3 +.byte 0xdd, 0xc4, 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41 +.byte 0x00, 0x9e, 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f +.byte 0x38, 0x27, 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5 +.byte 0x75, 0x5c, 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6 +.byte 0xd7, 0xe4, 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d +.byte 0x16, 0xbe, 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e +.byte 0xf8, 0xbc, 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25 +.byte 0x69, 0xcb, 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc +.byte 0xd7, 0x1b, 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc +.byte 0xe9, 0x26, 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc +.byte 0xb3, 0x78, 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d +.byte 0xc4, 0x22, 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09 +.byte 0xba, 0xa2, 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x80, 0x00, 0x26, 0x01, 0x30, 0x7e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30 +.byte 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20 +.byte 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41 +.byte 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74 +.byte 0x75, 0x6d, 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, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe3 +.byte 0xfb, 0x7d, 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e +.byte 0x40, 0x07, 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab +.byte 0xa4, 0x32, 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69 +.byte 0x57, 0xa1, 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38 +.byte 0x7c, 0xd2, 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb +.byte 0xf3, 0xae, 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23 +.byte 0x86, 0x59, 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0 +.byte 0xa2, 0xe9, 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7 +.byte 0x43, 0x39, 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33 +.byte 0xcc, 0x76, 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4 +.byte 0x2d, 0x7f, 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77 +.byte 0x4c, 0x25, 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5 +.byte 0x60, 0x4e, 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72 +.byte 0xd3, 0x39, 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec +.byte 0xde, 0x11, 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33 +.byte 0x28, 0xca, 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x81, 0x00, 0x78, 0x00, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53 +.byte 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0xaa, 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1 +.byte 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4 +.byte 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc +.byte 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07 +.byte 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d +.byte 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09 +.byte 0x29, 0x83, 0x00, 0x26, 0x02, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19 +.byte 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f +.byte 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72 +.byte 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77 +.byte 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x20, 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, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80 +.byte 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef +.byte 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b +.byte 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27 +.byte 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2 +.byte 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc +.byte 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41 +.byte 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49 +.byte 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d +.byte 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44 +.byte 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0 +.byte 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02 +.byte 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84 +.byte 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77 +.byte 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68 +.byte 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66 +.byte 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31 +.byte 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68 +.byte 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2 +.byte 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a +.byte 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75 +.byte 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96 +.byte 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba +.byte 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc +.byte 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3 +.byte 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b +.byte 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c +.byte 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12 +.byte 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe +.byte 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd +.byte 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67 +.byte 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55 +.byte 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x84, 0x00 +.byte 0x26, 0x01, 0x30, 0x81, 0x81, 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, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 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, 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7 +.byte 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb +.byte 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb +.byte 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8 +.byte 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44 +.byte 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1 +.byte 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c +.byte 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f +.byte 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66 +.byte 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9 +.byte 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d +.byte 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1 +.byte 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe +.byte 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50 +.byte 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e +.byte 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e +.byte 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01 +.byte 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45 +.byte 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20 +.byte 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d +.byte 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53 +.byte 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c +.byte 0x61, 0x73, 0x73, 0x20, 0x32, 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, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda +.byte 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b +.byte 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f +.byte 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02 +.byte 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66 +.byte 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48 +.byte 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91 +.byte 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e +.byte 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5 +.byte 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe +.byte 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f +.byte 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c +.byte 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26 +.byte 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81 +.byte 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c +.byte 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e +.byte 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30 +.byte 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31 +.byte 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74 +.byte 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73 +.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65 +.byte 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61 +.byte 0x73, 0x73, 0x20, 0x33, 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, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a +.byte 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78 +.byte 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52 +.byte 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03 +.byte 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61 +.byte 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5 +.byte 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8 +.byte 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b +.byte 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b +.byte 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f +.byte 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8 +.byte 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b +.byte 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4 +.byte 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44 +.byte 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31 +.byte 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d +.byte 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81 +.byte 0x82, 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, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53 +.byte 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09 +.byte 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f +.byte 0x2e, 0x68, 0x75, 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, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42 +.byte 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33 +.byte 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a +.byte 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf +.byte 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75 +.byte 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1 +.byte 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75 +.byte 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6 +.byte 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28 +.byte 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff +.byte 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0 +.byte 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e +.byte 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae +.byte 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa +.byte 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9 +.byte 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff +.byte 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x02, 0x30, 0x81, 0x82 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30 +.byte 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31 +.byte 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f +.byte 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 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, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda +.byte 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78 +.byte 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83 +.byte 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2 +.byte 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda +.byte 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9 +.byte 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9 +.byte 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd +.byte 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf +.byte 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad +.byte 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd +.byte 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0 +.byte 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05 +.byte 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba +.byte 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13 +.byte 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35 +.byte 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d +.byte 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12 +.byte 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa +.byte 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78 +.byte 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53 +.byte 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8 +.byte 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53 +.byte 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa +.byte 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86 +.byte 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4 +.byte 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66 +.byte 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e +.byte 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79 +.byte 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9 +.byte 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67 +.byte 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b +.byte 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70 +.byte 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61 +.byte 0x6d, 0x70, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x82, 0x01, 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, 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38 +.byte 0x0b, 0x69, 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e +.byte 0x23, 0x74, 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2 +.byte 0x9b, 0x5b, 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d +.byte 0x98, 0x6d, 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3 +.byte 0x31, 0x7e, 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36 +.byte 0x60, 0xa4, 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f +.byte 0x61, 0x5a, 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d +.byte 0x34, 0x7c, 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94 +.byte 0xb0, 0x4d, 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d +.byte 0xeb, 0xc8, 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a +.byte 0x3e, 0x86, 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04 +.byte 0x08, 0x8a, 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6 +.byte 0x68, 0x1d, 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5 +.byte 0x7a, 0x0d, 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed +.byte 0x45, 0x83, 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd +.byte 0xd4, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x86, 0x00, 0x26, 0x01, 0x30, 0x81, 0x83, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61 +.byte 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44 +.byte 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31 +.byte 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64 +.byte 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 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, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7 +.byte 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6 +.byte 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32 +.byte 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab +.byte 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9 +.byte 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2 +.byte 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8 +.byte 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36 +.byte 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd +.byte 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92 +.byte 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf +.byte 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30 +.byte 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25 +.byte 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88 +.byte 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8 +.byte 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3 +.byte 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x87, 0x00, 0x26, 0x02, 0x30, 0x81, 0x84, 0x31, 0x12 +.byte 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33, 0x32, 0x38, 0x37, 0x35 +.byte 0x31, 0x30, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75 +.byte 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4 +.byte 0x19, 0x01, 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b +.byte 0x96, 0x0b, 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8 +.byte 0x9e, 0x1d, 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61 +.byte 0x4e, 0xb6, 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78 +.byte 0xf5, 0xad, 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed +.byte 0x68, 0x4c, 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57 +.byte 0x72, 0xf3, 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7 +.byte 0x3b, 0xa4, 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07 +.byte 0x65, 0x52, 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56 +.byte 0xc3, 0x39, 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84 +.byte 0x4b, 0x2f, 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32 +.byte 0xca, 0x6f, 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd +.byte 0xa8, 0x0f, 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58 +.byte 0x65, 0x17, 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f +.byte 0x10, 0x77, 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54 +.byte 0x4c, 0x57, 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d +.byte 0xfa, 0x7c, 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab +.byte 0x8c, 0x61, 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8 +.byte 0xb5, 0xa3, 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8 +.byte 0x06, 0x4c, 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5 +.byte 0x87, 0x74, 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23 +.byte 0x8b, 0xf5, 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82 +.byte 0x2c, 0x7e, 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e +.byte 0xe7, 0xb4, 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2 +.byte 0x61, 0x89, 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb +.byte 0x10, 0x0a, 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01 +.byte 0x02, 0x2f, 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91 +.byte 0xd4, 0x03, 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98 +.byte 0x80, 0x6e, 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae +.byte 0xa2, 0x84, 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca +.byte 0x39, 0xbf, 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd +.byte 0x90, 0x49, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x88, 0x00, 0x78, 0x00, 0x30, 0x81, 0x85, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d +.byte 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f +.byte 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e +.byte 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee +.byte 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03 +.byte 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4 +.byte 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99 +.byte 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x88, 0x00, 0x26, 0x02 +.byte 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74 +.byte 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31 +.byte 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f +.byte 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 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, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56 +.byte 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23 +.byte 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd +.byte 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61 +.byte 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34 +.byte 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7 +.byte 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4 +.byte 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89 +.byte 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8 +.byte 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6 +.byte 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5 +.byte 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e +.byte 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4 +.byte 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72 +.byte 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee +.byte 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33 +.byte 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8 +.byte 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9 +.byte 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9 +.byte 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb +.byte 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a +.byte 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5 +.byte 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2 +.byte 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70 +.byte 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55 +.byte 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47 +.byte 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50 +.byte 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40 +.byte 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63 +.byte 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3 +.byte 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b +.byte 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc +.byte 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00 +.byte 0x26, 0x02, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c +.byte 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64 +.byte 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xb9, 0x5d +.byte 0x51, 0x28, 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab +.byte 0xcf, 0x0a, 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61 +.byte 0xdf, 0xf2, 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf +.byte 0x08, 0x00, 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17, 0x18, 0x80, 0xed, 0x88 +.byte 0xb2, 0xb4, 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06 +.byte 0x56, 0x89, 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89 +.byte 0xba, 0x88, 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28 +.byte 0xcb, 0xa3, 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4 +.byte 0xe7, 0xa0, 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36 +.byte 0xe6, 0x40, 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe +.byte 0x92, 0x44, 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e +.byte 0xf5, 0x8b, 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3 +.byte 0x7e, 0x98, 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4 +.byte 0x62, 0xc2, 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3 +.byte 0xc9, 0x3e, 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe +.byte 0x3a, 0xc2, 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10 +.byte 0xe1, 0x58, 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13 +.byte 0x8f, 0x0c, 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee +.byte 0xcd, 0x69, 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd +.byte 0xb6, 0x50, 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75 +.byte 0xd8, 0xb2, 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15 +.byte 0x72, 0x7c, 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75 +.byte 0x57, 0x04, 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee +.byte 0x66, 0xe2, 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c +.byte 0xf5, 0x39, 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd +.byte 0x1a, 0x6f, 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72 +.byte 0xc4, 0xf6, 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d +.byte 0xce, 0xe6, 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4 +.byte 0x0b, 0x91, 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41 +.byte 0x7d, 0x35, 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98 +.byte 0x4c, 0xe5, 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe +.byte 0xe4, 0xad, 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69 +.byte 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65 +.byte 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f +.byte 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45 +.byte 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9 +.byte 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6 +.byte 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8 +.byte 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79 +.byte 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab +.byte 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1 +.byte 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00, 0x26, 0x02, 0x30, 0x81 +.byte 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72 +.byte 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65 +.byte 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53 +.byte 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53 +.byte 0x41, 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, 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, 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e +.byte 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50 +.byte 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d +.byte 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47 +.byte 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6 +.byte 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e +.byte 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88 +.byte 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e +.byte 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33 +.byte 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8 +.byte 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0 +.byte 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9 +.byte 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7 +.byte 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01 +.byte 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73 +.byte 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60 +.byte 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67 +.byte 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33 +.byte 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32 +.byte 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37 +.byte 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf +.byte 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1 +.byte 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9 +.byte 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3 +.byte 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09 +.byte 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c +.byte 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4 +.byte 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1 +.byte 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa +.byte 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67 +.byte 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e +.byte 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c +.byte 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x92 +.byte 0x00, 0x26, 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72 +.byte 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a +.byte 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54 +.byte 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72 +.byte 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x20, 0x2d, 0x20, 0x47, 0x32, 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, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1 +.byte 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47 +.byte 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd +.byte 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa +.byte 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc +.byte 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4 +.byte 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8 +.byte 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4 +.byte 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62 +.byte 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf +.byte 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc +.byte 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7 +.byte 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0 +.byte 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa +.byte 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1 +.byte 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde +.byte 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x94, 0x00, 0x5b, 0x00, 0x30 +.byte 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f +.byte 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69 +.byte 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67 +.byte 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 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, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 +.byte 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb +.byte 0x6c, 0xe6, 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18 +.byte 0xb0, 0x78, 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97 +.byte 0x06, 0x38, 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91 +.byte 0x2e, 0x81, 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6, 0x3f, 0xad, 0x94, 0x00 +.byte 0x78, 0x00, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c +.byte 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07 +.byte 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64 +.byte 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda +.byte 0x0d, 0x75, 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a +.byte 0xf8, 0x10, 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf +.byte 0x97, 0x82, 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac +.byte 0x58, 0x04, 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd +.byte 0x39, 0x25, 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28 +.byte 0xa9, 0xd3, 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38, 0x65, 0xa0, 0x9b, 0x00 +.byte 0x26, 0x01, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69 +.byte 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53 +.byte 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65 +.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66 +.byte 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 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, 0xd5, 0x0c +.byte 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f +.byte 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76 +.byte 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6 +.byte 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d +.byte 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14 +.byte 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47 +.byte 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04 +.byte 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6 +.byte 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2 +.byte 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d +.byte 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a +.byte 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b +.byte 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e +.byte 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf +.byte 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f +.byte 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0xa9, 0x00, 0x26, 0x02, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64 +.byte 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63 +.byte 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x40 +.byte 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 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, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35 +.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, 0xc2, 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0 +.byte 0x91, 0x3a, 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f +.byte 0x4d, 0x23, 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3 +.byte 0x28, 0xec, 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9 +.byte 0xb0, 0x5f, 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1 +.byte 0x88, 0x6b, 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02 +.byte 0x80, 0x24, 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6 +.byte 0xcb, 0xcb, 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8 +.byte 0x8e, 0xa3, 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1 +.byte 0x2f, 0xa7, 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3 +.byte 0x0a, 0xfc, 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4 +.byte 0xb6, 0x84, 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2 +.byte 0x35, 0xdd, 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27 +.byte 0xe7, 0xc6, 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59 +.byte 0x65, 0x39, 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4 +.byte 0x2c, 0xfc, 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3 +.byte 0xd1, 0x68, 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19 +.byte 0x37, 0xd7, 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81 +.byte 0xf8, 0x17, 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a +.byte 0x48, 0x41, 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f +.byte 0x81, 0x53, 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63 +.byte 0x96, 0x4b, 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f +.byte 0x01, 0xeb, 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9 +.byte 0xf1, 0x51, 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36 +.byte 0x11, 0x04, 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47 +.byte 0xe4, 0x47, 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64 +.byte 0xf5, 0x0d, 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d +.byte 0xf2, 0x0d, 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31 +.byte 0x23, 0x47, 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99 +.byte 0x49, 0x19, 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07 +.byte 0x0f, 0xea, 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f +.byte 0x05, 0x2f, 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34 +.byte 0x0b, 0x02, 0x03, 0x01, 0x00, 0x01, 0xaa, 0x00, 0x26, 0x01, 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20 +.byte 0x4b, 0x66, 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54 +.byte 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61 +.byte 0x64, 0xc3, 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31, 0x35, 0x30 +.byte 0x33, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20 +.byte 0x41, 0x72, 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c +.byte 0x64, 0x29, 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76 +.byte 0xc3, 0xa1, 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4 +.byte 0xe3, 0x97, 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a +.byte 0x7f, 0xca, 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c +.byte 0x5b, 0x6d, 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90 +.byte 0xf2, 0x0f, 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58 +.byte 0xcd, 0x8e, 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc +.byte 0x4e, 0x30, 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63 +.byte 0xfe, 0x16, 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5 +.byte 0x59, 0xa6, 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75 +.byte 0xd9, 0x15, 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20 +.byte 0x9a, 0xd7, 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b +.byte 0x28, 0x60, 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f +.byte 0x3c, 0xde, 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76 +.byte 0x97, 0x5b, 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34 +.byte 0xa7, 0xa9, 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9 +.byte 0x40, 0x5d, 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03 +.byte 0xd2, 0x42, 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0xad, 0x00, 0x78, 0x00, 0x30, 0x81 +.byte 0xaa, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f +.byte 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31 +.byte 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 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, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 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, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 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, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99 +.byte 0x86, 0x64, 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2 +.byte 0x51, 0x64, 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38 +.byte 0x50, 0x76, 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48 +.byte 0x6f, 0x4c, 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa +.byte 0x7b, 0x7a, 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c +.byte 0x7e, 0xc1, 0x46, 0xb3, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73 +.byte 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79 +.byte 0x20, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xb6, 0x95, 0xb6, 0x43, 0x42 +.byte 0xfa, 0xc6, 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11 +.byte 0x41, 0x68, 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46 +.byte 0x66, 0x2e, 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff +.byte 0x31, 0x8b, 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28 +.byte 0xa7, 0xf8, 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22 +.byte 0x95, 0x62, 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde +.byte 0x4c, 0xdb, 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd +.byte 0xfb, 0xfd, 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d +.byte 0x0c, 0x5c, 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4 +.byte 0xf6, 0x68, 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25 +.byte 0x71, 0x88, 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31 +.byte 0x19, 0xe8, 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a +.byte 0x7a, 0x7f, 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6 +.byte 0x93, 0xe2, 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38 +.byte 0x86, 0x2e, 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6 +.byte 0x1c, 0xd8, 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0xb7, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0b, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30 +.byte 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38 +.byte 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e +.byte 0x20, 0x28, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31 +.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39 +.byte 0x39, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c +.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29, 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, 0xad, 0x4d, 0x4b, 0xa9 +.byte 0x12, 0x86, 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b +.byte 0x4a, 0x4d, 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68 +.byte 0xc0, 0xdb, 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13 +.byte 0x3a, 0x0e, 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d +.byte 0xb8, 0xcc, 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74 +.byte 0x94, 0xa1, 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3 +.byte 0x7e, 0xd7, 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8 +.byte 0xba, 0x66, 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8 +.byte 0xbd, 0x89, 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9 +.byte 0x90, 0x76, 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2 +.byte 0xcf, 0x29, 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd +.byte 0xb2, 0x64, 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85 +.byte 0x30, 0x29, 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a +.byte 0x15, 0xbd, 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49 +.byte 0x68, 0x91, 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf +.byte 0xc3, 0x18, 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0xc1, 0x00, 0x26, 0x01, 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, 0x30, 0x39, 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, 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, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2 +.byte 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e +.byte 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3 +.byte 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19 +.byte 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c +.byte 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4 +.byte 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8 +.byte 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0 +.byte 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f +.byte 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec +.byte 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a +.byte 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07 +.byte 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62 +.byte 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e +.byte 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6 +.byte 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8 +.byte 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc1, 0x00, 0x26, 0x02 +.byte 0x30, 0x81, 0xbe, 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, 0x35, 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, 0x32, 0x30 +.byte 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 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, 0x47 +.byte 0x34, 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, 0xb1, 0xec, 0x2c, 0x42, 0xee, 0xe2, 0xd1, 0x30, 0xff, 0xa5, 0x92, 0x47, 0xe2, 0x2d +.byte 0xc3, 0xba, 0x64, 0x97, 0x6d, 0xca, 0xf7, 0x0d, 0xb5, 0x59, 0xc1, 0xb3, 0xcb, 0xa8, 0x68, 0x19 +.byte 0xd8, 0xaf, 0x84, 0x6d, 0x30, 0x70, 0x5d, 0x7e, 0xf3, 0x2e, 0xd2, 0x53, 0x99, 0xe1, 0xfe, 0x1f +.byte 0x5e, 0xd9, 0x48, 0xaf, 0x5d, 0x13, 0x8d, 0xdb, 0xff, 0x63, 0x33, 0x4d, 0xd3, 0x00, 0x02, 0xbc +.byte 0xc4, 0xf8, 0xd1, 0x06, 0x08, 0x94, 0x79, 0x58, 0x8a, 0x15, 0xde, 0x29, 0xb3, 0xfd, 0xfd, 0xc4 +.byte 0x4f, 0xe8, 0xaa, 0xe2, 0xa0, 0x3b, 0x79, 0xcd, 0xbf, 0x6b, 0x43, 0x32, 0xdd, 0xd9, 0x74, 0x10 +.byte 0xb9, 0xf7, 0xf4, 0x68, 0xd4, 0xbb, 0xd0, 0x87, 0xd5, 0xaa, 0x4b, 0x8a, 0x2a, 0x6f, 0x2a, 0x04 +.byte 0xb5, 0xb2, 0xa6, 0xc7, 0xa0, 0x7a, 0xe6, 0x48, 0xab, 0xd2, 0xd1, 0x59, 0xcc, 0xd6, 0x7e, 0x23 +.byte 0xe6, 0x97, 0x6c, 0xf0, 0x42, 0xe5, 0xdc, 0x51, 0x4b, 0x15, 0x41, 0xed, 0x49, 0x4a, 0xc9, 0xde +.byte 0x10, 0x97, 0xd6, 0x76, 0xc1, 0xef, 0xa5, 0xb5, 0x36, 0x14, 0x97, 0x35, 0xd8, 0x78, 0x22, 0x35 +.byte 0x52, 0xef, 0x43, 0xbd, 0xdb, 0x27, 0xdb, 0x61, 0x56, 0x82, 0x34, 0xdc, 0xcb, 0x88, 0x60, 0x0c +.byte 0x0b, 0x5a, 0xe5, 0x2c, 0x01, 0xc6, 0x54, 0xaf, 0xd7, 0xaa, 0xc1, 0x10, 0x7b, 0xd2, 0x05, 0x5a +.byte 0xb8, 0x40, 0x9e, 0x86, 0xa7, 0xc3, 0x90, 0x86, 0x02, 0x56, 0x52, 0x09, 0x7a, 0x9c, 0xd2, 0x27 +.byte 0x82, 0x53, 0x4a, 0x65, 0x52, 0x6a, 0xf5, 0x3c, 0xe7, 0xa8, 0xf2, 0x9c, 0xaf, 0x8b, 0xbd, 0xd3 +.byte 0x0e, 0xd4, 0xd4, 0x5e, 0x6e, 0x87, 0x9e, 0x6a, 0x3d, 0x45, 0x1d, 0xd1, 0x5d, 0x1b, 0xf4, 0xe9 +.byte 0x0a, 0xac, 0x60, 0x99, 0xfb, 0x89, 0xb4, 0xff, 0x98, 0x2c, 0xcf, 0x7c, 0x1d, 0xe9, 0x02, 0xaa +.byte 0x04, 0x9a, 0x1e, 0xb8, 0xdc, 0x88, 0x6e, 0x25, 0xb3, 0x6c, 0x66, 0xf7, 0x3c, 0x90, 0xf3, 0x57 +.byte 0xc1, 0xb3, 0x2f, 0xf5, 0x6d, 0xf2, 0xfb, 0xca, 0xa1, 0xf8, 0x29, 0x9d, 0x46, 0x8b, 0xb3, 0x6a +.byte 0xf6, 0xe6, 0x67, 0x07, 0xbe, 0x2c, 0x67, 0x0a, 0x2a, 0x1f, 0x5a, 0xb2, 0x3e, 0x57, 0xc4, 0xd3 +.byte 0x21, 0x21, 0x63, 0x65, 0x52, 0x91, 0x1b, 0xb1, 0x99, 0x8e, 0x79, 0x7e, 0xe6, 0xeb, 0x8d, 0x00 +.byte 0xd9, 0x5a, 0xaa, 0xea, 0x73, 0xe8, 0xa4, 0x82, 0x02, 0x47, 0x96, 0xfe, 0x5b, 0x8e, 0x54, 0x61 +.byte 0xa3, 0xeb, 0x2f, 0x4b, 0x30, 0xb0, 0x8b, 0x23, 0x75, 0x72, 0x7c, 0x21, 0x3c, 0xc8, 0xf6, 0xf1 +.byte 0x74, 0xd4, 0x1c, 0x7b, 0xa3, 0x05, 0x55, 0xee, 0xbb, 0x4d, 0x3b, 0x32, 0xbe, 0x9a, 0x77, 0x66 +.byte 0x9e, 0xac, 0x69, 0x90, 0x22, 0x07, 0x1f, 0x61, 0x3a, 0x96, 0xbe, 0xe5, 0x9a, 0x4f, 0xcc, 0x05 +.byte 0x3c, 0x28, 0x59, 0xd3, 0xc1, 0x0c, 0x54, 0xa8, 0x59, 0x61, 0xbd, 0xc8, 0x72, 0x4c, 0xe8, 0xdc +.byte 0x9f, 0x87, 0x7f, 0xbd, 0x9c, 0x48, 0x36, 0x5e, 0x95, 0xa3, 0x0e, 0xb9, 0x38, 0x24, 0x55, 0xfc +.byte 0x75, 0x66, 0xeb, 0x02, 0xe3, 0x08, 0x34, 0x29, 0x4a, 0xc6, 0xe3, 0x2b, 0x2f, 0x33, 0xa0, 0xda +.byte 0xa3, 0x86, 0xa5, 0x12, 0x97, 0xfd, 0x80, 0x2b, 0xda, 0x14, 0x42, 0xe3, 0x92, 0xbd, 0x3e, 0xf2 +.byte 0x5d, 0x5e, 0x67, 0x74, 0x2e, 0x1c, 0x88, 0x47, 0x29, 0x34, 0x5f, 0xe2, 0x32, 0xa8, 0x9c, 0x25 +.byte 0x37, 0x8c, 0xba, 0x98, 0x00, 0x97, 0x8b, 0x49, 0x96, 0x1e, 0xfd, 0x25, 0x8a, 0xac, 0xdc, 0xda +.byte 0xd8, 0x5d, 0x74, 0x6e, 0x66, 0xb0, 0xff, 0x44, 0xdf, 0xa1, 0x18, 0xc6, 0xbe, 0x48, 0x2f, 0x37 +.byte 0x94, 0x78, 0xf8, 0x95, 0x4a, 0x3f, 0x7f, 0x13, 0x5e, 0x5d, 0x59, 0xfd, 0x74, 0x86, 0x43, 0x63 +.byte 0x73, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc2, 0x00, 0x78, 0x00, 0x30, 0x81, 0xbf, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65 +.byte 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65 +.byte 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30 +.byte 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x32 +.byte 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d +.byte 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20 +.byte 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x45, 0x43, 0x31, 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, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d, 0x41, 0x7b, 0xe2, 0x6c, 0xd0 +.byte 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69, 0x47, 0xe3, 0xb8, 0xc2, 0x7d +.byte 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06, 0x19, 0x86, 0x4f, 0x53, 0x10 +.byte 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61, 0x4c, 0x7d, 0xca, 0x93, 0x27 +.byte 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70, 0x5d, 0x36, 0xad, 0x67, 0x77 +.byte 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f, 0xf5, 0xe3, 0x62, 0xd4, 0xa9 +.byte 0x47, 0x07, 0x3e, 0xcc, 0x20, 0xd5, 0x00, 0x26, 0x01, 0x30, 0x81, 0xd2, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b, 0x6f, 0x63, 0x61 +.byte 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x39, 0x54, 0x75 +.byte 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65, 0x6c, 0x20, 0x76 +.byte 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20, 0x41, 0x72, 0x61 +.byte 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75, 0x20, 0x2d, 0x20 +.byte 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61 +.byte 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20, 0x2d, 0x20, 0x4b +.byte 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d +.byte 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20, 0x31, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaf +.byte 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9, 0x8d, 0x7b, 0x97 +.byte 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42, 0xd7, 0x19, 0x7c +.byte 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7, 0x8c, 0xbc, 0xe8 +.byte 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18, 0x25, 0x79, 0x83 +.byte 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a, 0x44, 0xa3, 0xab +.byte 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce, 0xf0, 0x55, 0xf7 +.byte 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec, 0x57, 0xce, 0xbc +.byte 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c, 0x83, 0xfb, 0x86 +.byte 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c, 0x7a, 0xdf, 0x03 +.byte 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e, 0x2d, 0x27, 0x38 +.byte 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8, 0xe0, 0xe0, 0xfc +.byte 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80, 0x84, 0xd0, 0x51 +.byte 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd, 0xa5, 0xa8, 0x1b +.byte 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c, 0xe6, 0xe5, 0xa4 +.byte 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5, 0xd0, 0x80, 0x34 +.byte 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec, 0x4f, 0x17, 0x02 +.byte 0x03, 0x01, 0x00, 0x01 + +.global _binary_x509_crt_bundle_end +_binary_x509_crt_bundle_end: /* for objcopy compatibility */ + + +.global x509_crt_bundle_length +x509_crt_bundle_length: +.long 69876 diff --git a/JoystickControlServo/main/CMakeLists.txt b/JoystickControlServo/main/CMakeLists.txt new file mode 100644 index 0000000..74d554c --- /dev/null +++ b/JoystickControlServo/main/CMakeLists.txt @@ -0,0 +1,4 @@ +idf_component_register(SRCS "Main.c" + PRIV_REQUIRES spi_flash + INCLUDE_DIRS "" + REQUIRES driver esp_adc) diff --git a/JoystickControlServo/main/Main.c b/JoystickControlServo/main/Main.c new file mode 100644 index 0000000..a953cea --- /dev/null +++ b/JoystickControlServo/main/Main.c @@ -0,0 +1,27 @@ +// Receive analog input + +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "driver/adc.h" + +void app_main(void) +{ + uint32_t voltage; + + // Configure ADC1 capture width + // 12 bit decimal value from 0 to 4095 + adc1_config_width(ADC_WIDTH_BIT_12); + // Configure the ADC1 channel (ADC1_CHANNEL_6 - pin 34), and setting attenuation (ADC_ATTEN_DB_11) + adc1_config_channel_atten(ADC1_CHANNEL_6, ADC_ATTEN_DB_11); + + while (1) + { + // Take an ADC1 reading on a single channel (ADC1_CHANNEL_6 pin 34) + // 11dB attenuation (ADC_ATTEN_DB_11) gives full-scale voltage 0 - 3.9V + // 4053 ~ 3.86V + voltage = adc1_get_raw(ADC1_CHANNEL_6); + printf("%ld \n", voltage); + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} \ No newline at end of file diff --git a/JoystickControlServo/pytest_hello_world.py b/JoystickControlServo/pytest_hello_world.py new file mode 100644 index 0000000..3524fd9 --- /dev/null +++ b/JoystickControlServo/pytest_hello_world.py @@ -0,0 +1,59 @@ +# SPDX-FileCopyrightText: 2022-2024 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!') + + +@pytest.mark.linux +@pytest.mark.host_test +@pytest.mark.macos_shell +def test_hello_world_macos(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/JoystickControlServo/sdkconfig b/JoystickControlServo/sdkconfig new file mode 100644 index 0000000..314e9fb --- /dev/null +++ b/JoystickControlServo/sdkconfig @@ -0,0 +1,2203 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.4.0 Project Configuration +# +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y +CONFIG_SOC_UART_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_AHB_GDMA_SUPPORTED=y +CONFIG_SOC_GPTIMER_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_MCPWM_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_ETM_SUPPORTED=y +CONFIG_SOC_PARLIO_SUPPORTED=y +CONFIG_SOC_BT_SUPPORTED=y +CONFIG_SOC_IEEE802154_SUPPORTED=y +CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y +CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y +CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y +CONFIG_SOC_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_LP_CORE_SUPPORTED=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_RTC_FAST_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_SYSTIMER_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_HMAC_SUPPORTED=y +CONFIG_SOC_DIG_SIGN_SUPPORTED=y +CONFIG_SOC_ECC_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_SDIO_SLAVE_SUPPORTED=y +CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_APM_SUPPORTED=y +CONFIG_SOC_PMU_SUPPORTED=y +CONFIG_SOC_PAU_SUPPORTED=y +CONFIG_SOC_LP_TIMER_SUPPORTED=y +CONFIG_SOC_LP_AON_SUPPORTED=y +CONFIG_SOC_LP_PERIPHERALS_SUPPORTED=y +CONFIG_SOC_LP_I2C_SUPPORTED=y +CONFIG_SOC_ULP_LP_UART_SUPPORTED=y +CONFIG_SOC_CLK_TREE_SUPPORTED=y +CONFIG_SOC_ASSIST_DEBUG_SUPPORTED=y +CONFIG_SOC_WDT_SUPPORTED=y +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +CONFIG_SOC_RNG_SUPPORTED=y +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +CONFIG_SOC_MODEM_CLOCK_SUPPORTED=y +CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_AES_SUPPORT_DMA=y +CONFIG_SOC_AES_GDMA=y +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y +CONFIG_SOC_ADC_MONITOR_SUPPORTED=y +CONFIG_SOC_ADC_DMA_SUPPORTED=y +CONFIG_SOC_ADC_PERIPH_NUM=1 +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=7 +CONFIG_SOC_ADC_ATTEN_NUM=4 +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=1 +CONFIG_SOC_ADC_PATT_LEN_MAX=8 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=2 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=4 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED=y +CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR=y +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y +CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y +CONFIG_SOC_CPU_CORES_NUM=1 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC=y +CONFIG_SOC_INT_PLIC_SUPPORTED=y +CONFIG_SOC_CPU_HAS_CSR_PC=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=4 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=4 +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x80000000 +CONFIG_SOC_CPU_HAS_PMA=y +CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP=y +CONFIG_SOC_CPU_PMP_REGION_GRANULARITY=4 +CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=3072 +CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 +CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 +CONFIG_SOC_AHB_GDMA_VERSION=1 +CONFIG_SOC_GDMA_NUM_GROUPS_MAX=1 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX=3 +CONFIG_SOC_GDMA_SUPPORT_ETM=y +CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_ETM_GROUPS=1 +CONFIG_SOC_ETM_CHANNELS_PER_GROUP=50 +CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=31 +CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y +CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM=8 +CONFIG_SOC_GPIO_SUPPORT_ETM=y +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP=y +CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_GPIO_IN_RANGE_MAX=30 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=30 +CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK=0 +CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT=8 +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x000000007FFFFF00 +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP=y +CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX=y +CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE=y +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_RTCIO_PIN_COUNT=8 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=1 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=8 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST=y +CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y +CONFIG_SOC_I2C_SUPPORT_XTAL=y +CONFIG_SOC_I2C_SUPPORT_RTC=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y +CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH=y +CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_LP_I2C_NUM=1 +CONFIG_SOC_LP_I2C_FIFO_LEN=16 +CONFIG_SOC_I2S_NUM=1 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_ETM=y +CONFIG_SOC_I2S_SUPPORTS_XTAL=y +CONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=2 +CONFIG_SOC_I2S_SUPPORTS_TDM=y +CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=6 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED=y +CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX=16 +CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH=10 +CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE=y +CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED=y +CONFIG_SOC_MMU_PERIPH_NUM=1 +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_MMU_DI_VADDR_SHARED=y +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=4 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE=y +CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=2 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=2 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=4 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 +CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y +CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y +CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y +CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y +CONFIG_SOC_RMT_SUPPORT_XTAL=y +CONFIG_SOC_RMT_SUPPORT_RC_FAST=y +CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_MCPWM_GROUPS=1 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y +CONFIG_SOC_MCPWM_SUPPORT_ETM=y +CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP=y +CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_PARLIO_GROUPS=1 +CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP=1 +CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP=1 +CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH=16 +CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH=16 +CONFIG_SOC_PARLIO_TX_RX_SHARE_INTERRUPT=y +CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +CONFIG_SOC_MPI_OPERATIONS_NUM=3 +CONFIG_SOC_RSA_MAX_BIT_LEN=3072 +CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968 +CONFIG_SOC_SHA_SUPPORT_DMA=y +CONFIG_SOC_SHA_SUPPORT_RESUME=y +CONFIG_SOC_SHA_GDMA=y +CONFIG_SOC_SHA_SUPPORT_SHA1=y +CONFIG_SOC_SHA_SUPPORT_SHA224=y +CONFIG_SOC_SHA_SUPPORT_SHA256=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=4 +CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M=y +CONFIG_SOC_SDM_CLK_SUPPORT_XTAL=y +CONFIG_SOC_SPI_PERIPH_NUM=2 +CONFIG_SOC_SPI_MAX_CS_NUM=6 +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_SUPPORT_DDRCLK=y +CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y +CONFIG_SOC_SPI_SUPPORT_CD_SIG=y +CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y +CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y +CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y +CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F80M=y +CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST=y +CONFIG_SOC_SPI_SCT_SUPPORTED=y +CONFIG_SOC_SPI_SCT_REG_NUM=14 +CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX=y +CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX=0x3FFFA +CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y +CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR=y +CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS=y +CONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 +CONFIG_SOC_SYSTIMER_ALARM_NUM=3 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20 +CONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y +CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST=y +CONFIG_SOC_SYSTIMER_INT_LEVEL=y +CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y +CONFIG_SOC_SYSTIMER_SUPPORT_ETM=y +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=1 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54 +CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y +CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST=y +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=2 +CONFIG_SOC_TIMER_SUPPORT_ETM=y +CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_MWDT_SUPPORT_XTAL=y +CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_TWAI_CONTROLLER_NUM=2 +CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=32768 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_PAD_JTAG=y +CONFIG_SOC_EFUSE_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_SECURE_BOOT_V2_ECC=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y +CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED=y +CONFIG_SOC_APM_LP_APM0_SUPPORTED=y +CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED=y +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=2 +CONFIG_SOC_UART_LP_NUM=1 +CONFIG_SOC_UART_FIFO_LEN=128 +CONFIG_SOC_LP_UART_FIFO_LEN=16 +CONFIG_SOC_UART_BITRATE_MAX=5000000 +CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK=y +CONFIG_SOC_UART_SUPPORT_RTC_CLK=y +CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y +CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y +CONFIG_SOC_UART_HAS_LP_UART=y +CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_EXTERNAL_COEX_ADVANCE=y +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 +CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_BEACON_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN=y +CONFIG_SOC_PM_SUPPORT_CPU_PD=y +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +CONFIG_SOC_PM_SUPPORT_XTAL32K_PD=y +CONFIG_SOC_PM_SUPPORT_RC32K_PD=y +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +CONFIG_SOC_PM_SUPPORT_TOP_PD=y +CONFIG_SOC_PM_SUPPORT_HP_AON_PD=y +CONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +CONFIG_SOC_PM_SUPPORT_PMU_MODEM_STATE=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y +CONFIG_SOC_PM_CPU_RETENTION_BY_SW=y +CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA=y +CONFIG_SOC_PM_RETENTION_HAS_CLOCK_BUG=y +CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN=y +CONFIG_SOC_PM_PAU_LINK_NUM=4 +CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR=y +CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC=y +CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE=y +CONFIG_SOC_PM_RETENTION_MODULE_NUM=32 +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED=y +CONFIG_SOC_CLK_RC32K_SUPPORTED=y +CONFIG_SOC_RCC_IS_INDEPENDENT=y +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL=y +CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT=y +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM=y +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN=y +CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_WIFI_HW_TSF=y +CONFIG_SOC_WIFI_FTM_SUPPORT=y +CONFIG_SOC_WIFI_GCMP_SUPPORT=y +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +CONFIG_SOC_WIFI_CSI_SUPPORT=y +CONFIG_SOC_WIFI_MESH_SUPPORT=y +CONFIG_SOC_WIFI_HE_SUPPORT=y +CONFIG_SOC_WIFI_MAC_VERSION_NUM=2 +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_ESP_NIMBLE_CONTROLLER=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED=y +CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION=y +CONFIG_SOC_BLE_USE_WIFI_PWR_CLK_WORKAROUND=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_CAPS_NO_RESET_BY_ANA_BOD=y +CONFIG_SOC_LP_CORE_SINGLE_INTERRUPT_VECTOR=y +CONFIG_SOC_LP_CORE_SUPPORT_ETM=y +CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_RISCV=y +CONFIG_IDF_TARGET_ARCH="riscv" +CONFIG_IDF_TARGET="esp32c6" +CONFIG_IDF_INIT_VERSION="5.4.0" +CONFIG_IDF_TARGET_ESP32C6=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x000D + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0 +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set + +# +# Log +# +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +# CONFIG_BOOTLOADER_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_V2_RSA_SUPPORTED=y +CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED=y +CONFIG_SECURE_BOOT_V2_PREFERRED=y +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +CONFIG_SECURE_ROM_DL_MODE_ENABLED=y +# end of Security features + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +CONFIG_ESP_ROM_HAS_CRC_LE=y +CONFIG_ESP_ROM_HAS_CRC_BE=y +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +CONFIG_ESP_ROM_UART_CLK_IS_XTAL=y +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=3 +CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y +CONFIG_ESP_ROM_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_RVFPLIB=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_HAS_HAL_SYSTIMER=y +CONFIG_ESP_ROM_HAS_HEAP_TLSF=y +CONFIG_ESP_ROM_TLSF_CHECK_PATCH=y +CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH=y +CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y +CONFIG_ESP_ROM_HAS_SPI_FLASH=y +CONFIG_ESP_ROM_HAS_REGI2C_BUG=y +CONFIG_ESP_ROM_HAS_NEWLIB=y +CONFIG_ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT=y +CONFIG_ESP_ROM_REV0_HAS_NO_ECDSA_INTERFACE=y +CONFIG_ESP_ROM_WDT_INIT_PATCH=y +CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y +CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +CONFIG_ESP_ROM_HAS_VERSION=y +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Boot ROM Behavior +# +CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y +# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set +# end of Boot ROM Behavior + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB is not set +# CONFIG_ESPTOOLPY_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=y +# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="80m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE="2MB" +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +# CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB is not set +CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# 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 + +# +# Console Library +# +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Driver Configurations +# + +# +# TWAI Configuration +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# end of TWAI Configuration + +# +# Legacy ADC Driver Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set + +# +# Legacy ADC Calibration Configuration +# +# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy ADC Calibration Configuration +# end of Legacy ADC Driver Configuration + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy SDM Driver Configurations + +# +# Legacy Temperature Sensor Driver Configurations +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy Temperature Sensor Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +CONFIG_EFUSE_MAX_BLK_LEN=256 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL 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 +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +CONFIG_ESP_COEX_ENABLED=y +CONFIG_ESP_COEX_SW_COEXIST_ENABLE=y +# CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_ESP_COEX_POWER_MANAGEMENT is not set +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:Parallel IO Configurations +# +# CONFIG_PARLIO_ENABLE_DEBUG_LOG is not set +# CONFIG_PARLIO_ISR_IRAM_SAFE is not set +# end of ESP-Driver:Parallel IO Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Temperature Sensor Configurations +# +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE is not set +# end of ESP-Driver:Temperature Sensor Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:USB Serial/JTAG Configuration +# +CONFIG_USJ_ENABLE_USB_SERIAL_JTAG=y +# end of ESP-Driver:USB Serial/JTAG Configuration + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +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 +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +CONFIG_HTTPD_MAX_URI_LEN=512 +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 +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# 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 +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTPS server + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP32C6_REV_MIN_0=y +# CONFIG_ESP32C6_REV_MIN_1 is not set +CONFIG_ESP32C6_REV_MIN_FULL=0 +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32-C6 Revision (Rev v0.99) +# +CONFIG_ESP32C6_REV_MAX_FULL=99 +CONFIG_ESP_REV_MAX_FULL=99 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 + +# +# Maximum Supported ESP32-C6 eFuse Block Revision (eFuse Block Rev v0.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32C6_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=0 +# 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_USE_DANGEROUS_RC32K_ALLOWED 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 + +# +# ETM Configuration +# +# CONFIG_ETM_ENABLE_DEBUG_LOG is not set +# end of ETM Configuration + +# +# GDMA Configurations +# +CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# CONFIG_GDMA_ENABLE_DEBUG_LOG is not set +# end of GDMA Configurations + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# ESP-MM: Memory Management Configurations +# +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +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_REPORT_DATA_TRAFFIC=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 +# CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +CONFIG_ESP_PHY_ENABLED=y +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_ENABLE_CERT_TEST 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 +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +# CONFIG_PM_SLP_IRAM_OPT is not set +CONFIG_PM_SLP_DEFAULT_PARAMS_OPT=y +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +# CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP is not set +# end of Power Management + +# +# ESP PSRAM +# + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP Security Specific +# + +# +# Crypto DPA Protection +# +CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP=y +CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW=y +# CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM is not set +# CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH is not set +CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL=1 +# end of Crypto DPA Protection +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_120 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 +# 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 +CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE=y +CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y +CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y +# CONFIG_ESP_SYSTEM_USE_EH_FRAME is not set + +# +# Memory protection +# +CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT=y +# CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE is not set +# 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_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_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_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +# CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=7 +# end of Brownout Detector + +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +CONFIG_ESP_SYSTEM_HW_STACK_GUARD=y +CONFIG_ESP_SYSTEM_BBPLL_RECALIB=y +CONFIG_ESP_SYSTEM_HW_PC_RECORD=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution 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_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of ESP Timer (High Resolution Timer) + +# +# 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_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP_WIFI_IRAM_OPT=y +CONFIG_ESP_WIFI_EXTRA_IRAM_OPT=y +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=y +CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +# CONFIG_ESP_WIFI_FTM_ENABLE is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +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_MBEDTLS_CRYPTO=y +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# CONFIG_ESP_WIFI_SUITE_B_192 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 +# CONFIG_ESP_WIFI_ENABLE_WIFI_TX_STATS is not set +# CONFIG_ESP_WIFI_ENABLE_WIFI_RX_STATS is not set +CONFIG_ESP_WIFI_TX_HETB_QUEUE_NUM=3 + +# +# 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_USE_STRFUNC_NONE=y +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# CONFIG_FATFS_USE_LABEL is not set +CONFIG_FATFS_LINK_LOCK=y +# end of FAT Filesystem support + +# +# FreeRTOS +# + +# +# Kernel +# +# CONFIG_FREERTOS_SMP is not set +CONFIG_FREERTOS_UNICORE=y +CONFIG_FREERTOS_HZ=100 +CONFIG_FREERTOS_OPTIMIZED_SCHEDULER=y +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +CONFIG_FREERTOS_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y +CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y +# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set +CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=1 +# 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_SYSTIMER_USE_ROM_IMPL=y +CONFIG_HAL_WDT_USE_ROM_IMPL=y +CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=y +CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=y +# CONFIG_HAL_ECDSA_GEN_SIG_CM is not set +# 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_TLSF_USE_ROM_IMPL=y +# end of Heap memory debugging + +# +# IEEE 802.15.4 +# +CONFIG_IEEE802154_ENABLED=y +CONFIG_IEEE802154_RX_BUFFER_SIZE=20 +# CONFIG_IEEE802154_CCA_CARRIER is not set +CONFIG_IEEE802154_CCA_ED=y +# CONFIG_IEEE802154_CCA_CARRIER_OR_ED is not set +# CONFIG_IEEE802154_CCA_CARRIER_AND_ED is not set +CONFIG_IEEE802154_CCA_MODE=1 +CONFIG_IEEE802154_CCA_THRESHOLD=-60 +CONFIG_IEEE802154_PENDING_TABLE_SIZE=20 +# CONFIG_IEEE802154_MULTI_PAN_ENABLE is not set +# CONFIG_IEEE802154_TIMING_OPTIMIZATION is not set +# CONFIG_IEEE802154_DEBUG is not set +# end of IEEE 802.15.4 + +# +# Log +# + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format +# end of Log + +# +# 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_DOES_ACD_CHECK is not set +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# 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 +CONFIG_LWIP_DHCPS_ADD_DNS=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_ACCEPTMBOX_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=0x7FFFFFFF +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# CONFIG_LWIP_PPP_SUPPORT is not set +# 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 +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF 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_DNS_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# 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_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI=y +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_HARDWARE_ECC=y +CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK=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_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +CONFIG_MBEDTLS_FS_IO=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_ENCRYPTION is not set +# 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 + +# +# OpenThread Spinel +# +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel +# 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_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_32KB=y +CONFIG_MMU_PAGE_MODE="32KB" +CONFIG_MMU_PAGE_SIZE=0x8000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +# CONFIG_SPI_FLASH_AUTO_SUSPEND is not set +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +# CONFIG_SPI_FLASH_ROM_IMPL is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y +# CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_GD_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP is not set +# 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 + +# +# ULP Debugging Options +# +# end of ULP Debugging Options +# 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) + +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# 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_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager +# 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_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_SW_COEXIST_ENABLE=y +CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE=y +CONFIG_ESP_WIFI_SW_COEXIST_ENABLE=y +# CONFIG_EXTERNAL_COEX_ENABLE is not set +# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set +# 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_ESP_SYSTEM_PD_FLASH is not set +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_ESP_SYSTEM_PM_POWER_DOWN_CPU=y +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_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_ESP32_DEBUG_STUBS_ENABLE is not set +CONFIG_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +CONFIG_BROWNOUT_DET_LVL=7 +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_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_SUITE_B_192 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=0x7FFFFFFF +# CONFIG_PPP_SUPPORT 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_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_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options diff --git a/JoystickControlServo/sdkconfig.ci b/JoystickControlServo/sdkconfig.ci new file mode 100644 index 0000000..e69de29 diff --git a/JoystickControlServo/sdkconfig.old b/JoystickControlServo/sdkconfig.old new file mode 100644 index 0000000..d0edce0 --- /dev/null +++ b/JoystickControlServo/sdkconfig.old @@ -0,0 +1,2084 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.4.0 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_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_SDIO_SLAVE_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_EMAC_SUPPORTED=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +CONFIG_SOC_RTC_MEM_SUPPORTED=y +CONFIG_SOC_I2S_SUPPORTED=y +CONFIG_SOC_RMT_SUPPORTED=y +CONFIG_SOC_SDM_SUPPORTED=y +CONFIG_SOC_GPSPI_SUPPORTED=y +CONFIG_SOC_LEDC_SUPPORTED=y +CONFIG_SOC_I2C_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_ULP_FSM_SUPPORTED=y +CONFIG_SOC_CLK_TREE_SUPPORTED=y +CONFIG_SOC_MPU_SUPPORTED=y +CONFIG_SOC_WDT_SUPPORTED=y +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +CONFIG_SOC_RNG_SUPPORTED=y +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL=5 +CONFIG_SOC_XTAL_SUPPORT_26M=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT=y +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DMA_SUPPORTED=y +CONFIG_SOC_ADC_PERIPH_NUM=2 +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +CONFIG_SOC_ADC_ATTEN_NUM=4 +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +CONFIG_SOC_ADC_PATT_LEN_MAX=16 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=9 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=2 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=0 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=2 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=20 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=9 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_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_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=16 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_APB=y +CONFIG_SOC_I2C_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_MAX_DATA_WIDTH=24 +CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD=y +CONFIG_SOC_I2S_LCD_I80_VARIANT=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_LCD_I80_BUSES=2 +CONFIG_SOC_LCD_I80_BUS_WIDTH=24 +CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX=y +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_REF_TICK=y +CONFIG_SOC_LEDC_SUPPORT_HS_MODE=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 +CONFIG_SOC_MCPWM_GROUPS=2 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MMU_PERIPH_NUM=2 +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=3 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=8 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=8 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=8 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=64 +CONFIG_SOC_RMT_SUPPORT_REF_TICK=y +CONFIG_SOC_RMT_SUPPORT_APB=y +CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT=y +CONFIG_SOC_RTCIO_PIN_COUNT=18 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +CONFIG_SOC_SDM_CLK_SUPPORT_APB=y +CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED=y +CONFIG_SOC_SPI_AS_CS_SUPPORTED=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_DMA_CHAN_NUM=2 +CONFIG_SOC_SPI_MAX_CS_NUM=3 +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=8192 +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=64 +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 +CONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y +CONFIG_SOC_TOUCH_SENSOR_VERSION=1 +CONFIG_SOC_TOUCH_SENSOR_NUM=10 +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +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_PM_MODEM_PD_BY_SW=y +CONFIG_SOC_CLK_APLL_SUPPORTED=y +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +CONFIG_SOC_SDMMC_USE_IOMUX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +CONFIG_SOC_WIFI_CSI_SUPPORT=y +CONFIG_SOC_WIFI_MESH_SUPPORT=y +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +CONFIG_SOC_WIFI_NAN_SUPPORT=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BT_CLASSIC_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED=y +CONFIG_SOC_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32" +CONFIG_IDF_INIT_VERSION="5.4.0" +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 + +# +# Log +# +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_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=y +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_40M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="40m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +# 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="4MB" +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# 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 + +# +# Console Library +# +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Driver Configurations +# + +# +# 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 + +# +# Legacy ADC Driver 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 Driver Configuration + +# +# Legacy DAC Driver Configurations +# +# CONFIG_DAC_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy DAC Driver Configurations + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy SDM Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set +CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set +CONFIG_EFUSE_MAX_BLK_LEN=192 +# end of eFuse Bit Manager + +# +# 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_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL 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 +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +CONFIG_ESP_COEX_ENABLED=y +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:DAC Configurations +# +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of ESP-Driver:DAC Configurations + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Touch Sensor Configurations +# +# CONFIG_TOUCH_CTRL_FUNC_IN_IRAM is not set +# CONFIG_TOUCH_ISR_IRAM_SAFE is not set +# CONFIG_TOUCH_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Touch Sensor Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# 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 +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +CONFIG_HTTPD_MAX_URI_LEN=512 +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 +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# 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 +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# 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 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 + +# +# Maximum Supported ESP32 eFuse Block Revision (eFuse Block Rev v0.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR is not set +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +CONFIG_RTC_CLK_SRC_INT_RC=y +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# end of RTC Clock Config + +# +# Peripheral Control +# +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# CONFIG_XTAL_FREQ_26 is not set +# CONFIG_XTAL_FREQ_32 is not set +CONFIG_XTAL_FREQ_40=y +# CONFIG_XTAL_FREQ_AUTO is not set +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# ESP-MM: Memory Management Configurations +# +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +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_REPORT_DATA_TRAFFIC=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 +# CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +CONFIG_ESP_PHY_ENABLED=y +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_ENABLE_CERT_TEST 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 +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +# CONFIG_PM_SLP_IRAM_OPT 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 Security Specific +# +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Memory +# +# CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set + +# +# Non-backward compatible options +# +# CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM is not set +# end of Non-backward compatible options +# end of Memory + +# +# Trace memory +# +# CONFIG_ESP32_TRAX is not set +CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +# CONFIG_ESP_SYSTEM_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_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +# CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 is not set +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y + +# +# 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) + +# +# ESP Timer (High Resolution 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_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_TG0_LAC=y +# end of ESP Timer (High Resolution Timer) + +# +# 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_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +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_USE_STRFUNC_NONE=y +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# CONFIG_FATFS_USE_LABEL is not set +CONFIG_FATFS_LINK_LOCK=y +# 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_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER=y +CONFIG_FREERTOS_CORETIMER_0=y +# CONFIG_FREERTOS_CORETIMER_1 is not set +CONFIG_FREERTOS_SYSTICK_USES_CCOUNT=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +# 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 +# CONFIG_HAL_ECDSA_GEN_SIG_CM is not set +# 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 +# + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format +# end of Log + +# +# 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_DOES_ACD_CHECK is not set +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# 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 +CONFIG_LWIP_DHCPS_ADD_DNS=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_ACCEPTMBOX_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_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# CONFIG_LWIP_PPP_SUPPORT is not set +# 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 +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF 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_DNS_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# 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_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +CONFIG_MBEDTLS_FS_IO=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 + +# +# OpenThread Spinel +# +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel +# 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!) +# +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# 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 + +# +# ULP Debugging Options +# +# end of ULP Debugging Options +# 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) + +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# 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_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager +# 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=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_TRACEMEM_RESERVE_DRAM=0x0 +# CONFIG_ESP32_PANIC_PRINT_HALT is not set +CONFIG_ESP32_PANIC_PRINT_REBOOT=y +# CONFIG_ESP32_PANIC_SILENT_REBOOT is not set +# CONFIG_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